hi,hope atleast this question would b answered...
Am using C# 2008
Am reading a html file
using :
streamreader sr = new streamreader(pa th,Encoding.DEf ault);
string input = sr.Read();
streamwriter sw = new streamwriter(pa th);
sw.Write(input) ;
sw.Close();
here the html file initially is proper but after writing it takes junk character which is visible through the browser
..thanx...
Am using C# 2008
Am reading a html file
using :
streamreader sr = new streamreader(pa th,Encoding.DEf ault);
string input = sr.Read();
streamwriter sw = new streamwriter(pa th);
sw.Write(input) ;
sw.Close();
here the html file initially is proper but after writing it takes junk character which is visible through the browser
..thanx...
Comment