I have IIS 5.1 on a XP machine, and visual studio 2005. How do I go about attaching my debugger to IIS instance.
BTW: I'm not seeing the IIS process within the running processes or probably I don't know what to look for .
I have IIS 5.1 on a XP machine, and visual studio 2005. How do I go about attaching my debugger to IIS instance.
BTW: I'm not seeing the IIS process within the running processes or probably I don't know what to look for .
The IIS process is aspnet_wp.exe.
In fact, attaching to the aspnet_wp.exe process is what VS does when you have your project set to use IIS for debugging.
in visual studio.
just to clarify Jimmie R. Houts answer ...
If you want to debug the web application VS and IIS .. you can do the following :
1] Host the site inside IIS .(virtual directory etc.)
2] then in VS2005 do this
Right Click on Web Project -> Properties -> Start options --> Use Custom Server ->Base URL -> Enter Site Address as Hosted in IIS .
Hit F5 and you will be able to Debug your code
Same this works for VS 2008 also .