How to use Html.RenderPartial for the PartialViews in other Folders?
I have tried as:
<% Html.RenderPartial("~/Views/User/Users.ascx", Model); %>
It thrown an error:
System.InvalidOperationException: The partial view '~/Views/User/Users.ascx' was not found. The following locations were searched:
~/Views/Main/~/Views/User/Users.ascx.aspx
~/Views/Main/~/Views/User/Users.ascx.ascx
~/Views/Shared/~/Views/User/Users.ascx.aspx
~/Views/Shared/~/Views/User/Users.ascx.ascx
Is anything missing here or its not able to call partialview in other folders?