本文介绍了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 questionHow 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]

这篇关于Azure的网站调试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-07 09:50