Clearly Explain the ispostback

Answer Posted / kaushal

Ispostback (page.ispostback()) is a method which represents
whether the page state of page is postback or first time
loaded. If the page is postback it returns True and False
for the First Time loaded

Is This Answer Correct ?    13 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to make sure that contents of an updatepanel update only when a partial postback takes place (and not on a full postback)?

616


Can you explain the basic use of dataview?

723


How to display validation messages in one control?

637


Is asp.net still used?

654


What are the types of validation in asp net?

633






What is form submit?

611


List down the sequence of methods called during the page load.

619


What is state management techniques in asp.net?

630


Can more than one person use the same login?

661


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

1818


What is asp.net? How is it different from asp?

631


What is the main differences between asp and asp.net?

605


What are the different types of validation controls provided in ASP.NET?

753


What is http pipeline in asp.net?

604


What is role-based security in asp.net?

604