I would be using FileSystem Object to create/read files in my server. Herez a 
sample code to create text file in server
 
Set fso = CreateObject("Scripting.FileSystemObject") 

filename=Server.MapPath("Comments.txt")

textvalue=Response.Form("txtComments")
 
fso.createtextfile(filename)

Set tso = fso.OpenTextFile(filename,1,false,0)

tso.WriteLine(textvalue)

tso.Close

Hope it answers your question.
 
Thanks,
Sreenath.
 

                
---------------------------------
 Start your day with Yahoo! - make it your home page 

[Non-text portions of this message have been removed]



 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to