up vote 0 down vote favorite
1
share [g+] share [fb]

Hallo, my team and I are about to start a project, and we would really like to use ASP.NET MVC, not the Web Forms. Why? Nothing special, just we want to learn it well and to measure what would be better to use in future projects.

But, our project has important request. We need ability to dynamically load user controls, that can be created and uploaded in runtime. With ASP.NET Web Forms and it's LoadControl method it's simple.

Can we do something like that with MVC?

Tnx

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Partial views are what you want.

http://stackoverflow.com/questions/1255038/mvc-dynamically-loading-partial-views

link|improve this answer
1  
Ok, this is what I wanted. For the rest, I just need to learn more about MVC. Thanks a lot! – Misha N. Sep 2 '09 at 14:46
feedback

partial views will do the trick.. or you might want to rethink why you are using a user control. is this a third party control? could this be rewritten?

link|improve this answer
This user control can be developed separately using the SDK we should provide. – Misha N. Sep 2 '09 at 14:06
so it can interact with the system using SDK, and it need to get back some information back. With ASP.NET Web Forms UserControls would need to implement some interface. – Misha N. Sep 2 '09 at 14:22
feedback

You can use

<%

foreach (var thing in things)

    Html.RenderPartial("location/page.ascx",thing);

%>

from within your view

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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