.NET

Fritz Onion will be doing a web cast series introducing Microsoft ASP.NET 2.0 to developers who are currently working with ASP.NET 1.1. During this 15-part series, learn the new features of this platform, which range from declarative data binding to storing per-client profile data, and hear practical advice about how to best incorporate these features […]

As you convert your ASP.NET 1.x applications to the new ASP.NET 2.0 framework, you may encounter issues related to the changes introduced by the 2.0 framework. In this article, we will look at both the conversion process and some of the common issues you may encounter during a conversion: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/conversionissuesasp_net.asp

A couple of weeks ago I had the requirement to enable ASP.NET output caching programmatically rather than declarative using the <%@ OutputCache … %> tag. I tried to follow the hints in the following KB: https://support.microsoft.com/default.aspx?id=323290. Actually what I found is that these procedure do not really work as expected. Especially the following in which I […]

The .NET framework ships with a very flexible tracing feature provided through the Trace class in the System.Diagnostics namespace.     Debug.Diagnostics.Trace.WriteLine(“My Debug Output”); Whenever you need to write some debug output just use Trace.WriteLine to send the debug output to a Trace Listener. In my project I have added some line of code to the […]