Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
3answers
4k views

How to specify an area name in an action link?

I have a shared master page which I am using from 2 different areas in my mvc 2 app. The master page has an action link which currently specifies the controller and action, but of course the link ...
12
votes
2answers
2k views

Having issue with multiple controllers of the same name in my project

I am running into the following error with my ASP.NET MVC 3 project: Multiple types were found that match the controller named 'Home'. This can happen if the route that services this request ...
10
votes
4answers
1k views

Can Areas in an ASP.NET MVC 2 application map to a subdomain?

Is there a way to map the Areas within an ASP.NET MVC 2 application to subdomains such as movies.example.com/Theater/View/2 instead of example.com/Movies/Theater/View/2 where { area = "Movies", ...
8
votes
1answer
2k views

ASP.NET MVC 3 RC AreaRegistration.RegisterAllAreas() and dynamically loaded assemblies

I am currently experimenting with dynamically loaded areas with ASP.NET MVC 3 RC. I've seen it written in many places that this is not what areas are intended for, and (at least pre-MVC 2) not ...
8
votes
2answers
1k views

How to specify default Area without adding area = “” to every ActionLink

I have a large existing application built on ASP.NET MVC2 RC2. All of my links look like this: htp//site/controller/action/id I just added an Area called: BigBird. Now when I'm in the BigBird ...
8
votes
6answers
2k views

How can we set authorization for a whole area in ASP.NET MVC?

I've an Admin area and I want only Admins to enter the area. I considered adding the Authorized attribute to every controller in the Admin area. Isn't there an elegant solution or is this feature not ...
8
votes
1answer
3k views

RedirectToAction between areas?

Is there a way to redirect to a specific action/controller on a different Area?
7
votes
2answers
11k views

How to Configure Areas in ASP.NET MVC3

Is anyone knows how to Configure Areas in ASP.NET MVC3. I read an article about Areas in here. But that article is not based on MVC3. In MVC3 there is no function named MapRootArea in RouteCollection ...
7
votes
2answers
313 views

Are nested Areas possible in ASP.NET MVC 2?

I would like to create a project structure with nested areas. For instance I have a "Home" area and underneath this I would like the "News" area that handles it's own route registration and will ...
6
votes
2answers
3k views

ASP.NET MVC routing and areas

I am messing around with ASP.NET MVC 2 Preview 2 and am trying to figure out how routing works with areas and such. In a single project implementation of areas, I want an area named "admin". I am ...
5
votes
1answer
350 views

asp.net mvc area default page

I have a MVC 2 site with an area, let's say the area name is {Admin} The areas and the site works fine. What I am trying to do is to have different default page for the area. When I am calling ...
5
votes
1answer
778 views

Asp.NET MVC 2 Preview 2: Area's aspx namespace problem

Hi I am now testing the new feature of MVC 2 Preview 2 called Areas within one project. Followed the MSDN article as well as the relase notes document I have created the Areas folder, then area's ...
4
votes
2answers
383 views

asp.net mvc 3 areas and url routing configuration

I have problem with create ulr routing for asp.net mvc3 application. My project has this structure : Areas EmployeeReport Controllers Report Views Report List .... Controllers Login ...
4
votes
3answers
296 views

MVC3 When To Use Areas?

I am working on an agile MVC3 project and it is starting to get rather large, specifically my management section, where the user is able to set a lot of configurations, etc. This is my first MVC3 ...
4
votes
3answers
1k views

asp.net MVC 3 applying AuthorizeAttribute to areas

I'm currently writing an Admin MVC 3 site, and each user only has access to certain parts of the site. The areas of my site are the same as the user Roles, so what I would like to do is the put the ...
4
votes
1answer
243 views

MVC Areas - Non Area Route Resolves To Area

I have added an area to my MVC 3 project. I cannot seem to get routing working with a very simple scenario. It seems to always want to resolve to the area. Here is my configuration. At startup: ...
4
votes
5answers
4k views

Html.ActionLink between Areas

I have added a new Area to my MVC3 project and I am trying to link from the _Layout page to the new Area. I have added an Area called 'Admin' that has a controller 'Meets'. I used the visual studio ...
4
votes
1answer
1k views

Is there a MVC SiteMap Provider that supports ASP.NET MVC 2 Areas feature?

I am looking for a MVC SiteMap provider in which I can specify area as well, along with controller and action. Did anyone use a SiteMap provider that supports MVC 2 Areas ? Help will be greatly ...
4
votes
6answers
6k views

asp.net mvc area problem: The view 'Index' or its master was not found

The view 'Index' or its master was not found. The following locations were searched: ~/Views/ControllerName/Index.aspx ~/Views/ControllerName/Index.ascx ~/Views/Shared/Index.aspx ...
3
votes
1answer
183 views

Asp.Net MVC 3 - Map a separate route that already belongs to an area

First keep in mind I am new to nop/mvc, and despite my best effort can find no solution to this seemingly simple task. I have been defining custom routes for a plugin I am making, and so far it's ...
3
votes
2answers
96 views

ASP.NET MVC2 Areas not working in IIS6

I have an ASP.NET MVC 2 application running fine on both IIS7 and the VS Web Development server. I recently added areas to the site and these too work fine on IIS7 and the VS Web Development server. ...
3
votes
1answer
174 views

How do I manage MVC areas and RenderAction in different controllers?

I have just added a new Admin area to my project as its started to get quite large and I want to keep it structured. I have a _ViewStart.cshtml view which sets a shared layout page to include a menu ...
3
votes
3answers
145 views

Asp.Net Routing with different parameter names

I'm trying to map certain routes so that auto generated Urls will look like Admin/controller/action/param for both of these code blocks, @Url.Action("action","controller",new{id="param"}) and ...
3
votes
4answers
938 views

ASP.NET MVC3 – Areas in Separate Assemblies

I am trying to set up an MVC3 solution using areas, but I want to have my areas in different assemblies. For example, I want a parent assembly that contains shared resources like master pages, style ...
3
votes
4answers
3k views

Relative Content Path in MVC3 Areas

I found this question Can't use relative paths with areas in ASP.NET MVC 2 which is the same issue I am having. Is this still the case in MVC3? Is there a way to keep content files in an area ...
3
votes
2answers
184 views

MVC Route Weirdness

Hey all, brand new to asp.net mvc and I am creating a fake social site (for learning purposes) by building off the stock mvc template... I added some views, etc. which all work fine. However, now I ...
3
votes
3answers
220 views

.NET MVC2 - My area url does not register?

I have a new MVC-2 project where I added the area 'member'. I created a controller named: 'profile'. This works: http://localhost:1234/Profile (loads up the index() function) This however doesn't: ...
3
votes
2answers
3k views

Why do ASP.NET MVC3 Areas and Razor Views produce this error?

The view at '~/Areas/SomeArea/Views/List/Index.cshtml' must derive from ViewPage, ViewPage, ViewUserControl, or ViewUserControl. The project structure is pretty much default. There is one area called ...
3
votes
1answer
128 views

how big should your controllers be in asp.net-mvc

i see the new feature of areas in asp.net-mvc 2. it got me thinking. why would i need this? i did some reading on the use cases and it came down to a specific point to me around how big and how ...
3
votes
2answers
454 views

Reuse an MVC area in multiple MVC applications?

I have some common web pages that will be in multiple MVC applications. For those pages I'd like to reuse the same source code (controllers + views) between the different MVC web sites. What is the ...
3
votes
4answers
3k views

MVC Areas - View not found

I have a project that is using MVC areas. The area has the entire project in it while the main "Views/Controllers/Models" folders outside the Areas are empty barring a dispatch controller I have setup ...
3
votes
2answers
390 views

Providing or Filtering assemblies when registering areas for an ASP.NET MVC 2.0 application

I have a large application that currently exists as a hybrid of WebForms and MVC 2.0. Startup of my application is dreadful, and the culprit is primarily because of the ...
3
votes
2answers
1k views

Areas over multiple projects - Views not found in child projects

I've been following this guide from MSDN about "Creating an ASP.NET MVC Areas Application Using Multiple Projects". Since ASP.NET MVC 2.0 is just preview one would imagine there to be some bugs. My ...
2
votes
2answers
205 views

Asp.net MVC RenderAction method in multiple controller

I am doing some plugin kind of work using asp.net mvc. I have two plugins(mvc projects) Say users and home. In both the plugins, I have Home Controllers. Yes the names are home controller in both the ...
2
votes
2answers
460 views

Extensible ASP.NET MVC Web Application

I need to write a web application with ASP.NET MVC 3 that should be completely modular and extensible. A module/extension would be, for example - a forum, a blog or a content module. I thought about ...
2
votes
1answer
365 views

How to use areas with controllers from a different assembly?

I'm starting a new ASP.NET MVC project, and I decided to put my controllers in a different assembly. Evertyhing works fine, but I have hit a problem: I created a new area in my MVC Project, called ...
2
votes
1answer
147 views

ASP.NET MVC - Controller names in nested applications

I have an MVC web app, and a nested admin application with areas with the same name: /localhost/videos /localhost/admin/videos These are separate projects in the VS solution. The admin project is ...
2
votes
0answers
93 views

Is there a way to load multiple versions of a given portable area or different versions of area dependencies within a ASP.Net WebSite

I'm trying to satisfy a couple of requirements I have while building an ASP.NET MVC Website. I've managed to follow the numerous portable area tutorials on the net to allow for drag and drop of a DLL ...
2
votes
1answer
147 views

Custom routing within an area

i have an Area called Members and the following registered routes in the MembersAreaRegistration file: context.MapRoute( "Members_Profile", "Members/Profile/{id}", new { controller = ...
2
votes
0answers
98 views

Change default Visual Studio behavior for MVC 2 project

I've created an MVC 2 project with nested areas, such as: Areas -->A -->C --> Controllers --> Models --> Views -->D --> Controllers --> ...
2
votes
1answer
115 views

How do I use EditorTemplates from an AREA outside the current in ASP.NET MVC

Consider a project with 2 Areas. /Areas/Blog /Areas/Dashboard Now say that my Blog area has an editor for the type SpecialBlog. /Areas/Blog/Views/Blog/EditorTemplates/SpecialBlog.ascx What if a ...
2
votes
2answers
87 views

About organisation of an asp mvc application

I'm starting a new web application that will be made of multiple parts or modules. My client want to be able to redistribute the application with a subset of modules to some other clients. I read ...
2
votes
1answer
714 views

ASP.Net MVC per area membership

I am building an ASP.Net MVC app that will run on a shared hosting account to host multiple domains. I started with the default template that includes membership and created an mvc area for each ...
2
votes
2answers
384 views

Different controllers with the same name in two different areas results in a routing conflict

I have two areas: ControlPanel and Patients. Both have a controller called ProblemsController that are similar in name only. The desired results would be routes that yield /controlpanel/problems => ...
2
votes
2answers
1k views

ASP.NET MVC Areas: How to hide “Area” name in URL?

When running the MVC 2 Areas example that has a Blog Area and Blog Controller the URL looks like this: http://localhost:50526/Blog/Blog/ShowRecent in the format: RootUrl / AreaName / ...
2
votes
1answer
168 views

How is other content besides views handled with PortableAreas from the MVCContrib library?

I have seen blog entries like ASP.Net MVC Portable Areas - Part 2 that indicate that the build action for views must be set to Embedded Resource. What about other content such as images and CSS? ...
2
votes
2answers
223 views

Syntax to specify Namespace when using helper.RouteUrl

I am using Asp.Net MVC 2 - RC w/ Areas. I am receiving an ambigious controller name exception due to having same controller name in two different areas. I've read Phil Haack's post Ambiguous ...
2
votes
1answer
303 views

How can I know which Area my MVC controller action is being called in?

I want to know how, from a controller action, I could identify the area in which the controller is in via the MVC framework (I mean, without making all controllers in a given area inherit from a base ...
2
votes
2answers
617 views

Set default area - Avoiding `, new {area = “”}` on each link on the site

This code is inside the master page: <li><a href="<%=Url.Action("Action", "Controller") %>">Main site link</a></li> <li><a href="<%=Url.Action("AreaAction", ...
2
votes
1answer
1k views

ASP.NET MVC Multi Project Areas Questions with setup

For those who setup muli project areas in ASP.NET MVC 2 in VS 2010, I have a few questions for you: Can other project areas use one master page? Or does each have to have their own master page? ...

1 2 3 4