Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

Have you tried the approach mentioned here? It is not exactly what I would call lightweight but it seems like it should work...

share|improve this answer
+1 nice interim approach for a scenario as described in the op's question – jim tollan May 30 '12 at 16:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.