如何在VSTS中调试ashx文件?
我正在使用 VSTS 2008 + .Net + C#。 我正在开发 ASP.Net Web 应用程序。 我添加了一个通用处理程序,即 .ashx 文件。 如何在 VSTS 2008 中调试这个 ashx 文件? 我发现浏览器中没有视图或设置为启动页面选项。 有任何想法吗?
I am using VSTS 2008 + .Net + C#. I am developing an ASP.Net web application. I have added an generic handler, i.e. .ashx file. How to debug this ashx file in VSTS 2008? I find there is no view in browser or set as startup page option.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需将工作室附加到 IIS Web 服务器(调试 -> 附加到进程 ->
w3wp.exe
)。You can simply attach your studio to your IIS webserver (Debug -> Attach to Process ->
w3wp.exe
).如果您的项目是一个 Web 服务项目(或类似的名称 - 图标将有一个带有文档和 C# 的地球),您可以从 VS 运行该项目。 VS 将运行内置的 ASP .Net 开发服务器,并打开包含所有文件链接的 IExplorer。 (至少对我来说是这样)
If your project is a Web Service project (or similar name - the icon would have a globe with a document and C#), you can just run this project from VS. VS will run the built in ASP .Net Development Server, and open IExplorer with links to all the files. (at least that what it does for me)