Friday, April 20, 2012

Page request Object in asp.net

Asp.net worker process can be called as asp.net run time.This will do all the needed things towards web page processing
When asp.net page request comes to asp.net worker process,it will create web page class object and makes a call to process request method.process request method will execute web page by performing following things:
*Initializing memory
*Loading Data and controls[creating server side control objects]
*executing subprograms for button click [Executing post back events]
*It will convert server side control into client side controls[Rendering Html Content to browser]
*Release the memory

No comments:

Bel