Using XPathDocument
using Systm.XML.Xpath //creates an instance of XPathDocument class and loads xml if (System.IO.File.Exists(Server.MapPath(“/portal/BrowserCookieValidation.xml”))) { XPathDocument doc = new XPathDocument(Server.MapPath(“BrowserCookieValidation.xml”)); //An XPathNavigator object acts like a cursor, addressing a node in the XML document at a time XPathNavigator nav = doc.CreateNavigator();… Read moreUsing XPathDocument