IE8 and VS2008: How do I disable script debugging?

后端 未结 3 1383
面向向阳花
面向向阳花 2021-02-15 00:28

IE8 is out and apparently it automatically turns on script (JavaScript) debugging whenever you launch your project in debugging mode. Does anyone know how to turn this ofF? I sc

3条回答
  •  没有蜡笔的小新
    2021-02-15 00:48

    Here is a solution that allows you to debug asp.net code normaly but disable javascript.

    Set the two registry values:

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN] "TabProcGrowth"=dword:00000001

    If you use a x64 windows you must set also this [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\MAIN] "TabProcGrowth"=dword:00000001

    Solution found at:
    http://social.msdn.microsoft.com/Forums/en/vsdebug/thread/e179672e-5a33-41ec-abc6-08c0b429af61

提交回复
热议问题