Questions tagged [asp.net-mvc-areas]

An organizational concept present in ASP.NET MVC, that allows the developer to partition a large web application into smaller units.

An organizational concept present in ASP.NET MVC, that allows the developer to partition a large web application into smaller, distinct units. Areas might be used to, for instance, divide an application into inventory, review, storefront, and administration modules.

More information

575 questions
0
votes
1 answer

Redirecting from area to a controller/view not in an area

I am trying to do an error redirection from inside my admin area to my error view which is shared and outside all areas. I created a method on my Lobby controller called error: public ViewResult Error() { return…
anyeone
  • 251
  • 1
  • 4
  • 14
-1
votes
1 answer

"This page could not be found on localhost" - after adding Area, in ASP.NET MVC Core 2.2

My project was rebuilt into folders called "area", everything worked before and the user was authorized to the account management panel. After adding these areas, the project cannot see where it should go. My structure project: Structure in Area…
user11115602
-1
votes
1 answer

Is it possible to have separate DB for each areas in .net-core along with project's DB?

I need to create separate database for area in a project. I don't want to join two database together. is it possible or not ? Actually I wanted to have totally separated projects in one solution but this way I have some issue with routes (only one…
iDeveloper
  • 1,699
  • 22
  • 47
-1
votes
1 answer

Multiple projects using ASP.NET MVC areas

How can I setup multiple projects using areas in asp.net mvc 2?
marcus
  • 9,616
  • 9
  • 58
  • 108
-1
votes
2 answers

Is an ASP.NET MVC Area a good way to separate functionality in my app into Admin and Regular users?

I have an existing ASP.NET MVC application that is working well. It provides a select group of people with a set of management functionality. I am now tasked with allowing a much larger group access to a very limited portion of the exact same…
Nate
  • 30,286
  • 23
  • 113
  • 184
1 2 3
38
39