0
votes
1answer
22 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
1answer
36 views
How do I get Absolute Root Links in ASP.NET MVC 2.0 beta Areas?
The link for logging in looks like this:
<%= Html.ActionLink("Log On", "LogOn", "Account") %>
which yields the following link in the browser:
http://localhost:2300/Account/LogOn
However, …
0
votes
2answers
84 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 …
1
vote
2answers
161 views
Asp.NET MVC Areas
So we finally got "areas" in our ASP.NET MVC framework! I'm able to get them up and going but one thing that bothers me is the amount of development servers it instantiates! So I currently have 6 …
1
vote
1answer
60 views
Areas in asp.net mvc, only one work at time
Hello.
My folder look like this:
(root)/Areas/Admin/Views/..
(root)/Areas/Admin/Controllers/...
(root)/Areas/Admin/Routes.cs
(root)/Areas/Forum/Views/..
(root)/Areas/Forum/Controllers/...
…
1
vote
2answers
96 views
ASP.NET MVC 2 Preview 2: Areas duplicate controller problem
Hi
I am continuing to enslave the MVC 2 thing: Areas...
Now I have two controllers with the same name (HomeController) in the main Controllers folder and in one of the Areas. Both have different …
-1
votes
3answers
118 views
ASP.NET MVC Areas: Can Someone Explain What’s Happening PostBuild
I know to start using areas, you have to establish parent/child relationships. I have a couple areas setup and their controllers are hitting just fine, the problem is some Views are not found. I'm …
6
votes
3answers
192 views
How to implement Areas in ASP.NET MVC 1.0 to be most compatible with ASP.NET MVC 2.0
Until the preview release yesterday of ASP.NET MVC I had been desperately needing a feature like 'areas' but not known what it was called to be able to find it.
The preview release describes 'areas' …
