I have the following line of code:
XDocument formConfiguration = XDocument.Load(ConfigurationManager.AppSettings["XMLFileURL"]);
I get the following exception message:
Reference to undeclared entity 'nbsp'
There are no sequences in the XML. There are no "&" characters in the XML. Where could this be coming from?
Thanks, Charles