Click to See Complete Forum and Search --> : Debugging Problems


theghost
October 22nd, 2003, 08:44 AM
I am trying to run a project. I receive this error.

"Error while trying to run project: Unable to start debugging on the web server. The server does not support debugging of ASP.net or ATL Server applications. Run setup to install the Visual Studio .Net server comonents. If setup has been run verify that a valid URL has been specified.
You may also want to refer to the ASP.NET and ATL Server debugging topic in the online documentation. Would you like to disable future attempts to debug ASP.NET pages for this project? YES NO HELP"

The IIS is runnig. I have Reset it. I have checked to see if I am a member of the debugging group and also admistrators group and I am. I do not know where to verify valid URL.

Can anyone help??

Thanks,

Jason

BMeister
October 22nd, 2003, 09:37 AM
Have you run the following?


C:\WINNT\Microsoft.NET\Framework\v1.0.3705\aspnet_regiis.exe -i

This will give IIS the settings for .aspx and other .NET items. IIS will sometimes not pick these up when VS.NET is installed (or if you installed IIS second.

If it still doesn't work then you need to run

regsvr32 C:\WINNT\Microsoft.NET\Framework\v1.0.3705\aspnet_isapi.dll

This sets the mappings for .aspx, .ascx and so on to use asp.net .

Hope this solves your problem.

theghost
October 22nd, 2003, 09:43 AM
thanks,

i am running aspnet_regiis -i now. i will see how it works.

thanks again,


jason

theghost
October 22nd, 2003, 09:48 AM
Everything worked just fine.

Thanks,

Jason