Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running Debugger problem

Status
Not open for further replies.

shaunacg

Programmer
Aug 1, 2003
71
GB
Hi,

I just installed IIS, followed by Visual Studio .Net and then created a project and a webform. I set the page.aspx as the start page and when I go to run it using debugging I get an error message saying it is unable to start debugging on the Web Server. The Server does not support debugging of ASP.Net.... Debug is set to true in the web.config. I don't know what the problem is as I set this all up before with no bother. Any ideas?

Thanks
 
Are you set up as an administrator on your computer? I had a problem with it also until I was set up with permissions.
 
What version of the framework are you trying to run?

If I am running 2.0 on the webserver I can't debug 1.1 and visa versa

What I have done is sctipt the uninstall and reinstall of the asp.net compents to help in debugging different projects

sample scipt
Code:
C:\W2KAS\Microsoft.NET\Framework\v2.0.40607\aspnet_regiis.exe -u
C:\W2KAS\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i

The code first -u Uninstalls 2.o and then -i installs 1.1 simply reverst the calls to change 1.1 back to 2.0

HTH


Rob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top