K
Keith G Hicks
Okay, I need to clean up these files. They are coming out of this goofy
system with this header:
<?xml version=?1.0? encoding=?UTF-8??>
The quotes around things are not coming in as quotes. And it's not the
correct encoding anyway. It needs to be this:
<?xml version="1.0" encoding="ISO-8859-1"?>
So I guess I need to change the encoding of each file before I can open it
up as an XML doc and read it there. I have no idea what is the best way to
do this programmatically in vb.net. Do I need to open with StreamWriter or
is there an easier way? I can't find anything out there that explains this
clearly. If I need to do this with streamwriter could someone point me
somewhere that shows how to do this?
Thanks,
Keith
system with this header:
<?xml version=?1.0? encoding=?UTF-8??>
The quotes around things are not coming in as quotes. And it's not the
correct encoding anyway. It needs to be this:
<?xml version="1.0" encoding="ISO-8859-1"?>
So I guess I need to change the encoding of each file before I can open it
up as an XML doc and read it there. I have no idea what is the best way to
do this programmatically in vb.net. Do I need to open with StreamWriter or
is there an easier way? I can't find anything out there that explains this
clearly. If I need to do this with streamwriter could someone point me
somewhere that shows how to do this?
Thanks,
Keith