Tagged Questions
7
votes
1answer
167 views
Whats so great about the new MVC2 areas?
Could some one please explain the advantages and disadvantages of using the new MVC2 Areas feature?
I don't understand what is so great about them. If I am adding an admin area to my MVC application ...
6
votes
2answers
1k 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 ...
6
votes
3answers
260 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' ...
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
1answer
151 views
ASP NET MVC Area routing/multiple routes issue in VB
I'm pretty inexperienced with .net and have just started learning MVC. I've hit an issue concerning multiple controllers being found:
"Multiple types were found that match the controller named ...
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 ...
2
votes
1answer
596 views
ASP.NET MVC 2 RC areas and shared models
Once new area is created by the means of Visual Studio context menu, there are three folders: Controllers, Models, Views. Is it supposed that every area should have it's own model classes? Or is it ...
1
vote
1answer
153 views
Routing to an Area home page in ASP.NET MVC
I'm trying to route to the home page of an Area in MVC, e.g.
myDomain.com/myArea/Home/Index
when I use the URL:
myDomain.com/myArea
MVC appears to by trying to find a Controller called "myArea" ...
1
vote
1answer
114 views
Can I nest areas in ASP.NET MVC?
I want the follow URLs in my MVC application:
/Admin/Accounts/Groups
/Admin/Accounts/Users
I know I could create an Area named Admin, and then create Groups and Users controllers inside that area.
...
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/...
...
1
vote
3answers
510 views
How do I not instantiate an instance of Cassini for each Area in my application?
I've been implementing areas, but have found that it instantiates a development server for each area when it launches Cassini.
Is this really necessary? MSDN is having me setup these areas as ...
0
votes
1answer
46 views
Routing and areas ASP.NET MVC 3
I have a problem implementing Routing with areas
I have following code in Global.asax
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new ...
0
votes
2answers
203 views
Is it possible to override the CookieSupport configuration in the Facebook C# SDK?
I have an ASP.NET MVC 3 application with some Facebook integration using the Facebook C# SDK with cookie support switched on.
I had planned (and would still like) to create a canvas Facebook ...
0
votes
1answer
159 views
How to enumerate Areas in ASP.NET MVC 2 RC
My controller has to enumerate all the areas in the application. Is it possible? And how?
0
votes
2answers
2k views
ASP.NET MVC 2 Areas and AfterBuildCompiler
I am just trying out Areas in ASP.NET MVC 2 and I've hit a small issue.
I've added the appropriate lines to my project file:
<Target Name="AfterBuild" DependsOnTargets="AfterBuildCompiler">
...
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, ...
0
votes
2answers
765 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
votes
3answers
193 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 ...