I have a webform project that i will rebuild and convert to a new MVC project. When i do this, i want to separate pages in smaller projects. This is what i have in my webform project.
Website:
- Admin
- Blog
- Groups
- Index.aspx
- Login.aspx
- Create.aspx
Now, i think to create a new separate projects for each, Admin, Blog, Groups and Startpage/Main site.
My questions is:
- Should i create a virtual application on my host for each of my projects and then publish, or is there a better way to do this?
- I want to route for example www....com/12 or www....com/myblog to folder Blog. Will there be any problem to do this?
- Is it posible to link files(Web.config, Global.asax, Js-files) from Startpage/Main site to the other/sub projects? What is the best way to do this?