Azure的网站调试
问题描述:
我知道我可以使用此处介绍的方法调试Azure的Web角色:
http://msdn.microsoft.com/en-us/library/windowsazure/ee405479.aspx
I understand that I can debug an Azure Web Role using the methods outlined here: http://msdn.microsoft.com/en-us/library/windowsazure/ee405479.aspx
什么是过程调试Windows Azure的网站?
What's the process for debugging a Windows Azure Website?
我希望能够步code,设置断点等。
I'd like to be able to step through code, set breakpoints, ect.
答
答案是一样的问题的答案
如何调试中的任何共享托管服务提供商(asp.net)的网站?
The answer is the same as the answer to the question How to debug (asp.net) website in any shared hosting provider?
- 请你异常处理/记录正确
- 使用
<编译调试=真/>
在调试时(,并仅在调试) - 启用所有和任何种类的错误报告的网站(以下附图片)
- [此处插入你最喜欢的调试共享托管网站的方式]
- Do your exception handling/logging properly
- Use
<compilation debug="true" />
while debugging (and only while debugging) - Enable all and any kinds of error reporting for the website (attached image below)
- [insert here your favorite way of debugging shared hosting site]