Tagged Questions

8
votes
4answers
1k views

ModelFactory in ASP.NET MVC to solve 'RenderPartial' issue

The 'RenderPartial()' method in ASP.NET MVC offeres a very low level of functionality. It does not provide, nor attempt to provide a true 'sub-controller' model *. I have an increasing number of ...
1
vote
1answer
773 views

Using ASP.NET MVC SubControllers with action parameters?

I am experimenting with MvcContrib subcontrollers. Looking at the example in the source, your parent controller (HomeController) takes an action which takes the subcontroller (FirstLevelSubController) ...
0
votes
1answer
242 views

subcontroller/partialrequest and form action method

What I need to do is the following Set small login form (or any partial view) Complete login actions Get back to the SAME place (controller/action) user was before clicking LOGIN button Any of ...