Monday, July 15, 2013

[SOLVED] "Attaching the Script debugger to process iexplore.exe failed" message after upgrading to Internet Explorer 10

HUGE thanks going out to Dmitri Leonov - MSFT in a stackoverflow article about the same message.
After updating to Internet Explorer 10, I started receiving the error when debugging with Visual Studio 2010:

"Attaching the Script debugger to process [####] iexplore.exe failed.  Another debugger may already be attached to the process."

The fix:

  • Close all instances of Internet Explorer.  (I will add you can leave Visual Studio open)
  • Run a command prompt as Administrator and paste this little gem into the command line:
 regsvr32.exe "%ProgramFiles(x86)%\Common Files\Microsoft Shared\VS7Debug\msdbg2.dll"
 
It worked like a champ for me (and apparently others from comments on the stackoverflow post.)

Reference links :
  1. http://stackoverflow.com/questions/13421797/vs2010-and-ie10-attaching-the-script-debugger-to-process-iexplore-exe-failed 
  2.  http://development.thatoneplace.net/2013/04/solved-attaching-script-debugger-to.html
  3. http://social.msdn.microsoft.com/Forums/vstudio/en-US/bbf26b82-5d00-4472-9bc4-be77a1fc8e9e/attaching-the-script-debugger-to-process-iexploreexe-on-machine-failed-a-debugger-is-already
 

Wednesday, July 10, 2013

Differentiate: Response.Redirect() and Server.Transfer() (via http://code4project.com)
Differentiate: Response.Redirect() and Server.Transfer() In ASP.Net “Server” and “Response” both are objects. 1.Server.Transfer 2.Response.Redirect Server.Transfer and Response.Redirect both are used to transfer one page to another. But there…