What is X-Path?

Answer Posted / naresh

XPath (XML Path Language) is a language for selecting nodes
from an XML document. In addition, XPath may be used to
compute values (strings, numbers, or boolean values) from
the content of an XML document. XPath was defined by the
World Wide Web Consortium, W3C.

The XPath language is based on a tree representation of the
XML document, and provides the ability to navigate around
the tree, selecting nodes by a variety of criteria. In
popular use (though not in the official specification), an
XPath expression is often referred to simply as an XPath.

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can we create pie chart in asp.net?

578


What is the difference between Classic ASP and ASP.Net?

526


Define authentication and authorization.

617


Why session is used in asp.net?

527


Mention the namespace that is used to include .net data provider for sql server in .net code?

499






What is is post back property in asp net?

533


What is the difference between application state and caching?

542


Differentiate between a hyperlink control and a linkbutton control.

550


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

1727


Explain the differences between clr & cts?

561


What is application variable in asp.net?

463


Which protocol is used in a web api?

559


What are the Types of session management in ASP.NET

559


What is true about application service provider?

487


What is autopostback in asp net?

583