Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
204 views

relative path in stylesheets within asp.net mvc areas

I have a project with the current structure My Project /Content /Controller /View /Model /Areas /Area1 /View /Controller /Model /Area2 /View ...
3
votes
2answers
2k views

ASP.NET MVC 2 RC 2 returns Area-specific controller when no area specified

I have a basic MVC 2 (RC2) site with one base-level controller ("Home"), and one area ("Admin") with one controller ("Abstract"). When i call http://website/Abstract - the Abstract controller in the ...
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
150 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
503 views

MVC with Areas — Html.ActionLink returning wrong URL/Route?

I am using MVC3 and have Areas in my application. In general, everything works fine, I can navigate to my area (e.g. Admin=Area, Controller=Department) like this: <%: ...
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
321 views

Returning to Calling Page Within an Area Using UrlReferrer

I have created a new MVC2 project using the ASP.NET MVC2 Web Application, which gives me the default web site. I have added a simple area in which I had a Home Controller and an Index view. That ...
1
vote
2answers
239 views

T4MVC MVC2 Views in Areas not generated

I just create an empty MVC2 project. Add an Area and a controller and a view to it. Include T4MVC files into the project and run the custom tool. Everything is generated except the ViewNames for the ...
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
519 views

Renderpartial or renderaction

have an action that generates active vacancies. The code is below; public ViewResult OpenVacancies() { var openvacancies = db.GetActiveVacancies(); return ...
1
vote
1answer
800 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
133 views

Calculating area of fitted function to compare with results - Mathematica

H! I've spent a lot of time reading Mathematica's Document Center and stackoverflow (among other sites), but I haven't found any answer to my question: How in Mathematica I can compare areas ...
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
1answer
83 views

ASP.NET MVC3 List all areas

I have an ASP.NET MVC3 application in which I am creating multiple areas, is there a way I can find out programmatically the number of areas that are present and their names. What I want to do it ...
0
votes
2answers
280 views

asp.net MVC 3 RegisterArea with multiple optional id's not working

I am trying to capture multiple optional parameters in an ASP.NET web application. When I define the MapRoute in RegisterArea(), it is breaking the Html.ActionLink() methods. The following code ...
0
votes
1answer
170 views

How to reduce number of sub-folders in MVC Areas?

I have an asp.net MVC3 application, and I'm using Areas. By default, I understand the setup would look like this: Areas\ Orders\ Controllers\ HomeController.cs (Action ...
0
votes
1answer
502 views

ASP.Net MVC3 Areas and Security

I have a public facing website and need to create an "admin" site for managing the content of the website. I would like to create an "Area" for admin functionality and secure just the Admin area ...
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
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
2answers
122 views

When using Areas with MVC2 is it good practice for an area to have its own Content folder?

I have an MVC2 application that is divided into Areas. Is it good practice for each area to have its own Content folder for Images, Styles etc that only pertain to that area?
0
votes
2answers
466 views

Mvc2 areas and session

Do Areas in Mvc2 have session isolation or do they share the same session as the rest of the application for the same user.
0
votes
1answer
512 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
238 views

ASP.NET MVC 2 Areas, Strange routing behavior

I've created an Area named "Admin". I've created also a controller(Pages) and a view(List) in this areas. When I run my app and enter the url "/Admin/Pages/List" I'm getting an The resource cannot be ...
0
votes
0answers
494 views

GetControllerInstances type is null

Try to ASP.NET MVC 2 Areas and have a problem. I have a User Area and a Blog area. User area is working properly but when I use my Blog area the controllerType is null in my GetControllerInstance. I ...
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
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
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
764 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 ...