You have multiline textbox and submit button. if you paste
xml content into multiline textbox and hit submit button.
what action will perform?

Answer Posted / sudheer

Nothing will happend.The particular page will be refreshed.

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between adding reference in solution explorer and adding references by using ?

580


What is the namespace to create thread in .net?

530


How to implement form based authentication in asp.net application?

573


What are the different web pages?

499


What is difference between cache and session?

502






To redirect the user to another page which method do we use without performing a round trip to the client?

539


How about the security in Activex DLL and Activex EXE ?

1789


Which data type does the rangevalidator control support?

560


They mostly asked difference between versions of technologies

959


Explain the purpose of storyboard.targetproperty.

525


What is a server farm in iis?

539


Explain diff between dataset and datareader?

533


Why cyclomatic complexity is important?

564


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


How you will manage the state of ASP.NET controls?

574