I am rendering a strongly typed partial view inside dynamic page. I got a method(xyz) inside controller which populates model .
How can i populate model and render this partial view
i tried this
<% Html.RenderPartial("partialviewname",xyz()); %> but i am getting build error saying no reference for xyz() , i added my controller class as reference and no luck
am i missing anything?