My layout of areas is such:
Warehouse/
ClientProcesses/
SupplierProcess/
Inside "Warehouse/" - I have a partial view called "summaryUC", I want to access this from inside the view (aspx file) from "ClientProcess area" or "SupplierProcess area" how can i do that?
<% Html.RenderPartial("SummaryUC", Model.Summary); %>
<% Html.RenderPartial("~Warehouse/Views/Shared/SummaryUC", Model.Summary); %> ???