Tagged Questions

3
votes
2answers
245 views

A Solution for Maintaining Views in Single-Project Areas

I have only tried this in single project areas. So if anyone tries this in a multi-project areas solution please let us know. Area support was added to MVC2. However the views for your controllers ...
2
votes
2answers
150 views

How do I get ASP.NET MVC to set a default Controller and Action for an Area?

I've created a new ASP.NET MVC project with areas and I'm trying to set a controller action to be the default controller action if the user visits that area. I added an area called 'Login' now I ...
1
vote
1answer
199 views

Return view from different area

I've got my ASP.NET MVC 2 application divided into few areas. One of them is a default area in main catalog, the other is Account area in Areas catalog. Now the problem is, that I need to use the same ...
1
vote
1answer
801 views

Areas in asp.net mvc, only one work at time

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/... ...
0
votes
1answer
189 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, ...