I am new to MVC, so please do not assume that I know something.
I am building a project that has already been written a lot in MVC, and I'm trying to add some things to it.
One view has a line
<% Html.RenderAction("List", "Image", new { id = Model.JobId, all = true }); %>
I see List.ascx in the Image directory. I see the List method on the view controller.
I would like to make the results of this list method another ascx file. (AssignImage.ascx) I understand that I could add another method on the controller, but it looks like I should have a way to use the same method, but a different view.
source share