B
Bill Ray
The company I work for has several vb.net windows apps. Our config
files all start with
<?xml version="1.0" encoding="Windows-1252"?>
We have trouble if we edit the config file in notepad and save. We
found out a work around. In notepad, if we change the default encoding
from UTF to ANSI, then our apps run fine, otherwise they bomb when
loading the config file. But this sucks because users and support
people forget to do this.
I just found another fix, but I was wondering if someone can explain
to me what functionality I maybe loosing by changing our config file
to start like this
<?xml version="1.0"?>
taking out the encoding.
files all start with
<?xml version="1.0" encoding="Windows-1252"?>
We have trouble if we edit the config file in notepad and save. We
found out a work around. In notepad, if we change the default encoding
from UTF to ANSI, then our apps run fine, otherwise they bomb when
loading the config file. But this sucks because users and support
people forget to do this.
I just found another fix, but I was wondering if someone can explain
to me what functionality I maybe loosing by changing our config file
to start like this
<?xml version="1.0"?>
taking out the encoding.