Help...i have a small code to read a txt and write...into *.xhtml
filein = new StreamReader("awalSol.txt"
fileout = new StreamWriter("info.xhtml"
string header;
header = filein.ReadToEnd();
fileout.WriteLine(header);
//after that i do a lot of adding a string into fileout using many //fileout.writeline();
now the problem is the fileout size is not more than 1 Kb although i had put a lot string into it..
Any sugestion to make my fileout (info.xhtml) able to write more than 1 Kb please??
filein = new StreamReader("awalSol.txt"
fileout = new StreamWriter("info.xhtml"
string header;
header = filein.ReadToEnd();
fileout.WriteLine(header);
//after that i do a lot of adding a string into fileout using many //fileout.writeline();
now the problem is the fileout size is not more than 1 Kb although i had put a lot string into it..
Any sugestion to make my fileout (info.xhtml) able to write more than 1 Kb please??