I have so many problems that more than one MVC project is running on the same server ... I am using Windows XP, which uses IIS by default (I believe that 5.1).
At this point, I even create WebSetup projects for every project I create to make sure everything is going well, while these projects can be easily deployed using XCopy.
On the bottom line, I can get the MVC project (for example, the ContactManager example) working at: http: // servername , OR http: // servername / ContactManager . But as soon as I have a project in both places, the horror begins
"title is not a member of ViewPage" -> yeah, right ...
Section or group name 'system.web.extensions' is already defined. -> sure
let me <clear /> or <remove /> that one, oh that not valid ...
Is it possible to have more than one ASP.NET MVC project (application) on a single Windows XP machine?
http: // server / Root project (MVC)
http: // server / app1 Application 1 (MVC)
http: // server / app2 Application 2 (MVC)
http: // server / appX Application X (MVC)
Can someone name some points of attention or something else?
source
share