我正在开发一个ASP.NET应用程序,有时候,当用户在表单中执行一个动作(点击某个地方,书写,移动鼠标等)后,找到将在服务器上执行的确切代码行是一个耗时的过程:您必须猜测在何处放置断点以使调试器停止。
我知道我可以在控制器或者Load()事件中手动设置断点,但是我想从VS那里得到一个“友好的建议”(说我懒吧)
我的问题是:在Visual Studio中,你可以“告诉”它:“Hey Visual Studio,good boy... Would you please stop the execution at the first instruction at the server?I don't know what will be executed,but as you are smarter than me,I want you to show me that magic line,and stop at it,would you please?".
先谢谢你,
罗杰
1条答案
按热度按时间fnx2tebb1#
一开始我想用正则表达式来模拟新函数断点处所有事件的名称,但那里似乎不支持正则表达式。
但是由于你使用的是ASP.NET,你可以使用Google Chrome或Firefox来为JavaScript事件添加断点。你可以引用here。或者为接收前端事件的方法添加断点,你可以引用here。
希望能对你有所帮助