I am unable to debug (F5) Visual Studio 2003 projects after installing Visual
Studio 2005 Beta. Everything worked fine before. The projects run perfectly
if I start without debugging (Ctrl+F5). The projects that I am trying to
debug are all located on my local machine. The VS 2005 debugger works great.
This is the error message that I am getting:
---------------------------
Microsoft Development Environment
---------------------------
Error while trying to run project: Unable to start debugging on the web
server.
Click Help for more information.
---------------------------
OK Help
Here is the output:
Auto-attach to process '[360] aspnet_wp.exe' on machine 'DALEALLESHOUSE'
failed. Error code 0x8013134b.
When I try to manually attach to the process, this is the error I get:
---------------------------
Microsoft Development Environment
---------------------------
Unable to attach to the process.
---------------------------
OK
---------------------------
I have already tried repairing the IIS mapping, as described here:
http://support.microsoft.com/default.aspx?scid=kb;en-us;306005
I really don’t want to start re-installing applications if I don’t have to.
Any suggestions would be greatly appreciated.
Thanks,
Dale
"Gary Chang" - 17 Aug 2004 07:01 GMT
Hi Dale,
Installing the Visual Studio 2005 Beta would configure IIS to use the v2.0
.NET Framework, it would cause that Visual Studio.NET 2003 cannot debug
against the new version.
Do you have tried the following resolution to configured IIS using the v1.1
.NET Framework again::
Open a command prompt and navigated to the 2.0 .NET Framework folder:
C:\Windows\Microsoft.NET\Framework\v2.0.*
Then run the following command to remove the 2.0 mappings from IIS:
ASPNET_RegIIS.exe -u
After this we navigated to the 1.1 .NET Framework folder:
C:\Windows\Microsoft.NET\Framework\v1.1.4322
Run the following command to configure IIS to use the 1.1 .NET Framework
ASPNET_RegIIS -i
Wish it helps!
Best regards,
Gary Chang
Microsoft Online Partner Support

Signature
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
michael clark - 18 Mar 2005 00:27 GMT
this solution worked great for me. thanks