Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
bool bModified = false;
XmlDocument oXmlDocument = new XmlDocument();
oXmlDocument.Load("myfile.xml");
const string filePath = "Model/Locations/BenefitsLocation/FilePath";
XmlNode n =oXmlDocument.SelectSingleNode(filePath))
if (n != null)
{
n.InnerText = "new path";
bModified = true;
}
if (bModified)
oXmlDocument.Save("myfile.xml");