IE8 and VS2008: How do I disable script debugging?

后端 未结 3 1668
误落风尘
误落风尘 2021-02-15 00:35

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:54

    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

提交回复
热议问题