Answer Posted / pushpendra singh
The first stage in the page life cycle is initialization.
This is fired after the page's control tree has been
successfully created. All the controls that are statically
declared in the .aspx file will be initialized with the
default values. Controls can use this event to initialize
some of the settings that can be used throughout the
lifetime of the incoming web request.
Check this Link for detail
http://www.mindstick.com/Blog/48/ASP%20NET%20Page%20Life%
20Cycle
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
How can we access static variable?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
If you want to write your own dot net language, what steps you will you take care?
What is http post action?
How to improve performance of web application asp.net mvc? : Asp.Net MVC
What are resource file and how do we generate resource file?
How would you get asp.net running in apache web servers? Explain it's limitations.
How can you handle unmanaged code exceptions in asp.net?
What does uri mean?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
What is the use of dispose method?
How is mvc different from asp.net? : Asp.Net MVC
Why do we use web config?
What are the new data controls in asp.net 2.0?
Can we set which type of comparison we want to perform by the CompareValidator control?