Thread: form handling
View Single Post
  #2 (permalink)  
Old 03-15-2008
mira mira is offline
Jr. Member

Join Date: Mar 2008
Posts: 263
BRL$: -134.73
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 38
mira is on a distinguished road
Default Re: form handling

You can use following code to write in text file. But you should use cdonts to send email.

HTML Code:
<html> <body> <%
Set fileObj=Server.CreateObject("Scripting.FileSystemObject")
set file1=fileObj.CreateTextFile("my.txt") 
file1.WriteLine("Test")
file1.WriteLine("Another Test")
file1.Close
set file1=nothing
set fileObj=nothing
%> </body> </html>
Reply With Quote