How to access a .ascx page from another View?
- by user281180
I have a view: User. In that I have an ascx page : Details
I have a view : Test. I want to access the Details from User from test, using render partial. How can I do that?
<%Html.RenderPartial("Details"); %> doesn`t workin this case.