I am trying to figure out how to render a dynamic custom user control in a MVC Razor view. I currently have an .aspx page which just has the control on it. Then by calling @Html.Partial("aspx_page_name") I am able to render the control and bring it in to the page. This works great but...
I have several other pages that need this functionality and I want to dynamically create this user control and add it to the page instead of having a hard coded .aspx page for each control. The reason I would have multiple .aspx pages is because the custom user control accepts different parameters that allow the control to be rendered in a custom manner.
What I'm looking for is something like ...
// In my model or controller
CustomUserControl control = new CustomerUserControl();
control.setBlah = "blah";
control.setEtc = "etc"
control.setId = "3456"
// Render control to make it available to Razor view
Any thoughts? I've have googled this topic for several hours now and haven't found anything that matches my needs. Most of the results I find talk about rendering the control using an .aspx page. I know the whole idea isn't ideal but until another team in my organization writes an updated user control for MVC3 I need this solution to pull us through.