When deploying ASP.NET applications to a production environment, you will most likely want to set the compilation debug attribute in web.config to false, as having debug set to true has some downsides: Compilation takes longer as batch optimizations are...
During a debugging session today Søren and I got to talk about how the Page_Load method on a page is called. The method is called after the Load event and is declared like this: 1: protected void Page_Load( object sender, EventArgs e) 2: { 3: 4:...