I am trying to debug a web application through IIS that has a virtual directory other than localhost. It compiles fine but gets the above message anytime that I try to start debugging. I have compilation debug=’true’.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Right click your ‘web’ project and select ‘property pages’. Then change ‘Start Options’ to ‘Don’t open a page. Wait for a request from an external application.’ and for server, select ‘Use custom server’ with Base URL: ‘http://localhost/your_virtual_dir/‘
Then with a web browser opened pointing to the IIS location (and virtual dir) you setup, the two should work in tandem with each other.
Hope that helped.