Browse by Tags

All Tags » ASP.NET (RSS)
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...
Posted by lasseeskildsen | 3 comment(s)
Filed under: , ,
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:...
Posted by lasseeskildsen | 5 comment(s)
Filed under: ,
More Posts