What methods are fired during the page load?
Answer Posted / dilip
Init()
Load()
PreRender()
Unload()
Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What is ascx?
What is true about application service provider?
What is side-by-side execution? Can two applications, one using a private assembly and other using a shared assembly, be stated as side-by-side executables?
Which authentication uses a combination of windows and iis authentication?
What is difference between mvc and asp.net? : Asp.Net MVC
What is cross page posting in asp net?
What is the difference between pathparam and queryparam?
What is css and what is it used for?
Why do we need Sessions?
What is asp.net architecture?
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 loop in asp.net?
What is directive in asp net?
Explain a program using razor view engine to create a simple application? : asp.net mvc
What is difference between session and viewstate?