我在VS2017中显示我的Default.aspx'内部网络浏览器使用按钮"在浏览器中显示(内部浏览器)"。
有效。我看到了页面,我看到了我已定义的文本框和按钮。
现在我在Default.aspx中设置了断点,如下所示:
Web.config的配置如下:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<httpRuntime/>
</system.web>
</configuration>
断点没有被击中的原因可能是什么?
答案 0 :(得分:1)
如果您使用Internet Explorer,
如果你把调试器;您的javascript代码中的关键字,您可以调试您的JavaScript代码。
如果您使用谷歌浏览器,则可以使用相同的关键字。这次你应该按键盘上的F12键打开谷歌浏览器的开发工具。如果开发者工具已打开,您可以在Google Chrome开发工具中调试您的JavaScript代码。
function alertSomething(){
debugger; //In internet explorer debugger will be hit directly (if you put a breakpoint). In google chrome, debugger will be hit if the developper tools is open.
alert('test');
}