views:

102

answers:

2

I have a online website and i have locally on my PC all its source code "c#/asp.net3.5" i want to debug the online version using the current local source code i have inside my Visual studio 2008.

Anyone have an idea how to do that or its not possible?

+2  A: 

If your online website has the pdb files on the site, you can remote debug it if you have the remote debugger program on that computer, and it's running. You'll need to Attach to Process... and then type in the IP address of the computer running the website.

The remote debugger is in your visual studio directory under Common7/IDE/Remote Debugger/

Joseph
+3  A: 

Check out: http://support.microsoft.com/kb/910448

Noon Silk