Posts

Showing posts from March, 2011

loose weight drink tea without milk.

http://www.marieclaire.co.uk/news/health/520505/drinking-tea-helps-weight-loss.html

Biztalk Server in 15 seconds for anybody

I was new to Biztalk and there was nobody to guide me. This below Biztalk blog help one understand what biztalk is all about in 15 seconds. http://www.codeproject.com/KB/biztalk/BiztalkToGrandma.aspx

Lead Applications Developer: The IT Ambassador

Nice blog post of Lead Application developer tasks link is below. http://www.certmag.com/read.php?start=0&in=3692

Factory method and Abstract factory method live example

http://userpages.umbc.edu/~tarr/dp/lectures/Factory.pdf

ASP.NET Page Life Cycle

Page_Init -> During this phase, the server creates an instance of the server control. i.e. various controls are intialised to default values. but viewstate doesn't exists. ViewState Load method -> Loads viewstate object. Load postback Data -> Loads the data posted back incase of isPostback is true. Page_Load () -> During this phase, the instance of the control is loaded onto the page object in which it is defined Pre_Render () -> During this phase, the control is updated with the changes made to it. This prepares the control for rendering. Save () -> During this phase, the state information of the control is saved. For example, if a value is set for the control during the Load event, it is embedded in the HTML tag that will be returned to the browser. SaveViewState ()-> Viesstateinformation is saved. Rendering ()-> During this phase, the server creates the corresponding HTML tag for the control. Disposing ()-> During

using XML data Source with asp.net datagripd nice blog

http://decoding.wordpress.com/2008/12/22/aspnet-how-to-use-an-xmldatasource-with-a-gridview/