Wednesday, September 10, 2008

Some .net tips....

Difference between Response.Write() and Response.Output.Write()...
Response.Output.Write() allows you to write formatted output.

Methods are fired during the page load...
Init() - when the page is instantiated
Load() - when the page is loaded into server memory
PreRender() - the brief moment before the page is displayed to the user as HTML
Unload() - when page finishes loading.

Difference between Codebehind="MyCode.aspx.cs" and Src="MyCode.aspx.cs "...
CodeBehind is relevant to Visual Studio.NET only.

No comments: