VS2013: How to debug a web application under a specific app domain?

Posted by burnt1ce on Stack Overflow See other posts from Stack Overflow or by burnt1ce
Published on 2013-11-08T19:24:03Z Indexed on 2013/11/09 9:54 UTC
Read the original article Hit count: 391

Filed under:
|
|
|

I have a few applications running under one app domain using port 80. I'm using port 80 to test and develop web application code.

I want to take those same applications and publish them in a different app domain under a different port, 8001.

This way, clients can view my applications that's using port 8001 while I develop and compile my project on port 80. However, when I debug my application, it freezes both the web applications on both port 80 and 8001.

How can I debug my application under port 80 without affecting the web applications under port 8001?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about visual-studio