When I try to load a xmlfile which has the '%' in an attribute, I get a XmlException at the position of the '%'. See at the Example in the tag 'humidity'
<current_conditions>
<condition data="Klar"/>
<temp_f data="63"/>
<temp_c data="17"/>
<humidity data="Feuchtigkeit: 30 %"/>
<icon data="/ig/images/weather/sunny.gif"/>
<wind_condition data="Wind: W mit 34 km/h"/>
</current_conditions>
Loading the XmlDocument with xmlDoc:
private void ParseXML(string url) {
XmlDocument doc = new XmlDocument();
doc.Load(url);
}