Author: .NET Web Development and Tools Blog | Posted on: 6/17/2013 2:43:11 PM | Views : 1101

In ScottGu’s Blog “ Announcing the release of Windows Azure SDK 2.0 for .NET ”, among all other new features, you learn how to stream your Windows Azure Web Site’s application logs into Visual Studio. It might be also useful if you persist those same logs in Azure Table Storage and view them in Visual Studio for certain time intervals. This blog will describe the steps how to achieve that. You need to install Windows Azure SDK 2.0 for .NET from Windows Azure .NET Developer Center in order to use this feature. Add Tracing To Your Application Add some tracing in a WebForm application with Systyem.Diagnostics.Trace. To test, I usually add some traces inside the Page_Load method as shown below. 1: public partial class _Default : Page 2: { 3: protected...(read more) ...

Go to the complete details ...