Click here to Skip to main content
15,894,405 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
Hello,
Could you pls suggest me that how we can write in text file in asp.net (C#, vb.net).
That would be simple to implement and result oriented.

Thanks!
Posted

Hi,
Here I'm providing code for creating text file and writing data to it
C#
File.Create("pathof folder");
      StreamWriter sw = new StreamWriter("pathofrequiredfile");
      sw.WriteLine("");
      sw.Close();


Try this and you've to import System.IO;

All the best
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900