Switch to full style
ASP/ASP.net examples
Post a reply

Create a text file

Sun Mar 27, 2011 10:34 pm

Create a text file in ASP.net
Code:
<% 
Dim objfolderStream
, objfileStream 
Set objfolderStream 
= CreateObject("Scripting.FileSystemObject") 
Set objfileStream 
= objfolderStream.CreateTextFile("c:\codemiles.txt", True) 
// write content to text file . 
objfileStream .WriteLine("text file created New ...") 
objfileStream 
.Close
%>
 




Post a reply
  Related Posts  to : Create a text file
 Create a moving text banner     -  
 Create PNG file     -  
 Create new file with JavaFX     -  
 Import text file with ASP.NET     -  
 Create set up file of my java application     -  
 Read Arabic text from file     -  
 Reading and Writing To text file     -  
 Search records from text file     -  
 display the content of text file     -  
 How to create a file in java script using FireFox     -