I plan to use XmlDocument.Load() when a user clicks on a file from an open window dialogue. I am testing it with a absolute path
XmlDocument.Load("C:\\filename.xml");
This errors out. Chrome Developer tools states it cannot find the file and it is looking for the file with the following form "/C:\filename.xml"
Obviously this won't work because for that preceding backslash. Is there a way to remove that or is there a better way to do what I am doing?