What Are The Difference Between AutoEventWireup="true" and
AutoEventWireup="False"

Answer Posted / navneet

Sorry in the above example is small mistake


if the AutoEventWireup="true" propety in dropdown when
index changed automatically post back to the server.

if the AutoEventWireup="false" propety in dropdown when
index changed will not post back to the server.

Is This Answer Correct ?    8 Yes 33 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between page.registerclientscriptblock and page.registerstartupscript?

572


Can I stream live content/events?

579


i want to implement grid view value in paypal site. so how to create this code in asp.net with C#

1499


What are triggers of an updatepanel?

554


What are merge modules?

558






What is mvc in asp.net interview question? : Asp.Net MVC

493


How many types of sessions are there in asp net?

526


Why do we need a web application session?

510


How can i explain my project during interview?many time i expalain my project but they did't accept? please explain me.

5076


Can I read the hard disk serial # of the client computer using asp.net?

554


What is dynamic web page with example?

525


Describe Segmentation With Paging?

632


Define msil.

551


What is globalization and localization in asp net?

496


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

1734