Sunday, June 5, 2011
Saturday, June 4, 2011
What is the difference between Page_init and Page_Load event?
Page_init
This event is the first event to occur when an ASP.net page is executed,
this is the event where you should be performing any initialization steps
that you need to setup or create instances of server controls.
Its generally advised not to access controls in this event as there is no
guarantee of the controls been created at this stage, its in this event the
controls are actually created.
This event fires only the first time the page is loaded and from the next
time on a postback Page_init is not fired.
Page_load
This is the event where most of our work will be done, this event occurs
when all objects/controls on the page are created and will be available for
use.
Unlike Page_init, this event is loaded everytime when the page is postback.
This event is the first event to occur when an ASP.net page is executed,
this is the event where you should be performing any initialization steps
that you need to setup or create instances of server controls.
Its generally advised not to access controls in this event as there is no
guarantee of the controls been created at this stage, its in this event the
controls are actually created.
This event fires only the first time the page is loaded and from the next
time on a postback Page_init is not fired.
Page_load
This is the event where most of our work will be done, this event occurs
when all objects/controls on the page are created and will be available for
use.
Unlike Page_init, this event is loaded everytime when the page is postback.
Friday, June 3, 2011
Programming Interviews – Techniques & Tips by Gayle Laakmann, ex-Googler
http://blog.interviewstreet.com/2010/10/programming-interviews-techniques-tips-by-gayle-laakmann/
Which answer of a candidate do you think gave you a ‘Wow! This is the candidate I am looking for‘ effect?
I want candidates who are:
* Smart
* Write good code
* Who care about writing clean code
* Write good code
* Who care about writing clean code
Thursday, June 2, 2011
OpenID in ASP.NET MVC3 , DotNetOpenAuth
Extract and Integrate OpenID with MVC3 and Microsoft Membership Provider .
By using DotNetOpenAuth and OpenID-Selector
OpenID Authentication with ASP.NET MVC3 , DotNetOpenAuth and OpenID-Selector - Web Surgeon
By using DotNetOpenAuth and OpenID-Selector
OpenID Authentication with ASP.NET MVC3 , DotNetOpenAuth and OpenID-Selector - Web Surgeon
Subscribe to:
Posts (Atom)