Tagged Questions

0
votes
1answer
33 views

ASP.NET MVC, Should I keep entire app in areas?

Imagine that I have a store. I have an admin side to the store located in an area called "Admin". This makes sense. But should I also have an area called "Public" for the public facing side of the ...
0
votes
1answer
515 views

ASP.NET MVC partial in a Portable Area not found

I'm trying to include a partial in a view. Both the partial and the view are in an MVC Portable Area. Here's the code in the view: <% Html.RenderPartial("Here"); %> Here's the partial ...
0
votes
1answer
609 views

Help with jQuery Grid in an ASP.Net MVC 2 RC with areas

I've followed Phil Haack's demo of jQuery Grid successfully in an mvc 2 rc project without areas. Now I'm trying to implement the same code in an areas project but the data is not being passed to the ...
0
votes
2answers
766 views

MVC 2 Beta DefaultControllerFactory with Areas

Why default factory WON'T return full name of the controllers (with namespaces)? I'm using Service Locator and autofac. using System.Web.Mvc; using Microsoft.Practices.ServiceLocation; namespace ...