Hello,
I have the following error:
Invalid character in the given encoding. Line 25, position 114.
I am using Asp.net Vb.net with the code below:
<div>
<asp:GridView ID="GridView1" runat="server" DataSourceID="XmlDataSourc
e1">
</asp:GridView>
<asp:XmlDataSource ID="XmlDataSource1" runat="server"
DataFile="
http://www.meteorologic.net/webmaster/xml/xml_file_4330.xmlhttp://www.meteorologic.net/webmaster/xml/xml_file_4330.xml">
</asp:XmlDataSource>
</div>
I read here that this might be because of encoding to utf-8.
I changed the webconfig as follows:
<globalization
fileEncoding="utf-8"
requestEncoding="utf-8"
responseEncoding="utf-8"
/>
But still get the same error. Please help