I'm new to working with MVC so please don't assume I know anything.
I am picking up a project that has much already written in MVC and I am trying to add some things to it.
On one View there is a line
<% Html.RenderAction("List", "Image", new { id = Model.JobId, all = true }); %>
I see a List.ascx under the Image directory. I see the List method on the view controller.
I'd like to render the results of that list method to a different ascx file. (AssignImage.ascx) I realize I could add another method on the controller, but it seems like I should have a way of using the same method but a different view.