Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help.. i can't write a file using streamwriter more than 1 KB

Status
Not open for further replies.

ridifvx

Programmer
Apr 10, 2003
34
ID
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??
 
I'm doing a search and find same problem with me sorry :)
thanks ObisLavu..for your past solution

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top