有没有办法在不编译整个网站的情况下更新网络用户控制代码(ascx.cs)文件?
先谢谢了。 我正在使用 vs2010,asp.net 4 webform。
无论如何,我可以更新代码隐藏文件(ascx.cs)文件而不编译整个站点吗? 因为我只想调试一些ascx.cs文件,而编译一个大的整个站点至少需要1分钟。
Thanks first.
I'm using vs2010, asp.net 4 webform.
Is there anyway which I can update a code behind file (ascx.cs) file without compile the whole site?
Because I just want to debug some ascx.cs file, and compile a big whole site will cost 1 minutes at least.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在用户控件中放置断点。
当断点命中时,您可以修改代码并在完成后运行它。
注意:您的 VS 设置必须允许在调试时进行更改,并且您不能进行深度修改,否则它将要求重新启动应用程序。
Put breakpoint in the user control.
When breakpoint hits, you can modify code and run it when completed.
Note: Your VS setting must enable to allow changes on debugging and You can't modified in a depth otherwise it will ask for restart app.