B
barry
Thanks for your reply.
I am parsing a French website, i found that it reads the characters
correctly when i open the .html file using
TextReader tr = new StreamReader("XYZ.htm", new UTF7Encoding(true)) ;
if am able to parse the data correctly, i have checked this using the Visual
Studio 2003 Debugger, problem arises after writing the data to file which i
open using
TextWriter tw = new StreamWriter("zxy.txt", false, new UTF7Encoding(true));
tw.WriteLine("", new UTF7Encoding(true));
tw.close();
I am parsing a French website, i found that it reads the characters
correctly when i open the .html file using
TextReader tr = new StreamReader("XYZ.htm", new UTF7Encoding(true)) ;
if am able to parse the data correctly, i have checked this using the Visual
Studio 2003 Debugger, problem arises after writing the data to file which i
open using
TextWriter tw = new StreamWriter("zxy.txt", false, new UTF7Encoding(true));
tw.WriteLine("", new UTF7Encoding(true));
tw.close();