微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

IE8断点无法调试的问题

关键词:IE8 VS2005 C# ASP.NET 断点 不能 无法调试 断点失效@H_404_1@

解决:(原文)
IE 8 has a feature called Loosely-Coupled Internet Explorer (LCIE) which results in IE running across multiple processes.
http://www.microsoft.com/windows/internet-explorer/beta/readiness/developers-existing.aspx#lcie@H_404_1@

Older versions of the Visual Studio Debugger get confused by this and cannot figure out how to attach to the correct process. You can work around this by disabling the process growth feature of LCIE. Here's how:@H_404_1@

1) Open RegEdit
2) browse to HKEY_LOCALMACHINE -> SOFTWARE -> Microsoft -> Internet Explorer -> Main
3) Add a dword under this key called TabProcgrowth
4) Set TabProcgrowth to 0@H_404_1@

简单来说,在“HKEY_LOCALMACHINE -> SOFTWARE -> Microsoft -> Internet Explorer -> Main”下添,创建一个DWORD类型键,名称是TabProcgrowth,值为0,再调试就搞定@H_404_1@

我是在XP下把IE7升级到IE8,调试ASP.NET /C#程序。@H_404_1@

 @H_404_1@

vs2008+ie8调试和断点

Microsoft 发布了更新的 Microsoft Visual Studio 2008 SP1 调试器组件。  主要是解决问题的发生与单步执行和命中断点。@H_404_1@

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐