what is SAP fullform

Answer Posted / praveen

system applications products

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When we use cookie less session? Explain its working?

569


What are validators and list some validators of asp.net?

547


What are client activated objects?

561


Do you support digital rights management to protect my videos?

457


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?

522






how to transfer the file from client to server using asp.net

593


How will you do Redo and Undo in a TextControl?

674


Difference between web user control and web custom control?

504


What is repository pattern in mvc.net? : asp.net mvc

530


What are resource file and how do we generate resource file?

570


Explain the features that make asp.net more used framework? : asp.net mvc

487


Differentiate between early binding and late binding.

580


State differences between MVC and WebAPI

611


What is difference in .net 1.1 and .net 2.0?

592


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