I am calling my partial view like this:
<% Html.RenderPartial(\"~/controls/users.ascx\"); %>
Can I pass parameters to partial view?
There is another overload for RenderPartial that will pass your model through.
<% Html.RenderPartial("~/controls/users.ascx", modelGoesHere); %>
How to access? Just like you normally would with any view:
<%= Model.MagicSauce %>