Can I create modules in asp.net mvc?

1

I have a home page with contact and such, similar to other pages. In the page I have a Login button and when I click on the same redirect to a project module.

Example: Home localhost / Home / Home / Index

Login localhost / EAD / Login / Index

There are two different projects, how can I work with ASP.NET MVC?

In hosting for example I could deploy two applications without one destroying the other? Does anyone know how many applications I can have a simple ASP.NET mvc hosting?

    
asked by anonymous 12.05.2016 / 22:12

1 answer

2

Deivid, you do not even really need to create multiple projects. You can separate the Modules by Area in ASP.NET MVC 4 . In fact this concept has existed since version 1.0 of ASP.NET MVC.

If you do not know the concept or have never worked with it, just follow the tutorial

I hope I have helped \ o /

    
12.05.2016 / 23:53