Various types of Page Load functions

Answer Posted / kamal

page_PreInit
Page_Init
Page_InitComplete
Page_Preload
Page_Load
Page_LoadComplete
Page_PreRender
Page_PreRenderComplete
Page_PreSaveState
Page_SaveStateComplete
Page_Unload

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a server cookie?

503


What are the media types of http requests and response?

512


Define dll hell?

631


Explain cookies with example.

562


What are the differences between the response.write() and response.output.write()?

539






Define managed code and managed data in .net?

515


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 = "" & TxtEmpId.Text & "" & _ "" & TxtName.Text & "" & _ "" & TxtSalary.Text & "" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file 100 xxx 2000 yyy dddd 77777 rrrr rrrr 6666 qaqa sini 50000 errrrrrrrr rrrrrrrrr 677777 rrr rrr 33

1736


We are using Jscriopt validations and at clint site javascript is not running that time validation would work? if yes then how it would behave?

1410


Is web config mandatory?

542


How to send a DataReader as a parameter to a remote client ?

2727


Explain Optimization technique description?

605


What are the Types of authentications in IIS

601


Differentiate between authentication and authorization.

565


If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?

524


What are the differences between primary foreign and unique keys?

525