Creating Understanding and Educating Programmers, Developers and Technical Communities, one post at a time.

Tuesday, October 12, 2010

Debugging ASP.NET Page

You can debug asp.net application either on page level or application level.
  • Enable debugging for a page by adding a Debug= "true" attribute to the <%@ Page %> directive.
  • Enable debugging for entire application by adding <compilation debug = "true"> in configuration/system.web/ withing web.config file.

Page.IsPostBack

The Page class includes a property called the IsPostBack property, which you can use to detect weather the page has already been posted back to server.

Monday, May 3, 2010

[Blog Review] If broken it is, fix it you should

Tess Ferrandez is an ASP.NET Escalation Engineer at Microsoft. She has been writing blog on http://blogs.msdn.com/tess/ for five years. Her areas of interest are debugging and related tools.

I find her blog interesting and learned most of the advanced debugging skills.

Tess gave very funny name to her blog, If broken it is, fix it you should. She describe it in following words.
Using the powers of the debugger to solve the problems of the world - and a bag of chips

Friday, April 23, 2010

ALT.NET Houston Open Spaces 2010

Three day event from April 30th to May 2nd is going to happen in Houston, TX. This conference is being held to allow developers to come and share their experiences, learn from each other. ALT.NET is about challenging the status-quo, continually looking for ways to better our craft, and to collaborate to create a community of mindful .NET software developers.

You can get registration information from http://altnethouston.com/

Tuesday, March 23, 2010

Master Pages in ASP.Net

Quick overview of master pages mechanism in ASP.Net.



Please read ASP.NET Master Pages Overview.

Monday, February 22, 2010

Detect Control through Events in ASP.Net

It is cool to use Object sender and cast it to back into original control and perform desired operations.

Let me know, if you get it. Otherwise, I will post code example here.