i have a login page (html) i need to transfer the username and the password to a text file using asp ...

<FORM method=post action=login.asp>
<INPUT id=email class=inputtext type=text name=email>
<INPUT id=pass class=inputpassword type=password name=pass>
</form>

i need this parametrs to be written in text file (notepad) using asp


Thanks Alot Guys !!

Recommended Answers

All 2 Replies

fs = CreateObject("Scripting.FileSystemObject")
  mfile = "nameit"
  outdir = "c:/dir/" 
  mstring = outdir & mfile 
  Conn = fs.OpenTextFile(mstring, 2, True)
  Conn.WriteLine( "mytextline1" )
  Conn.WriteLine( "mytextline2" )
  Conn.Close()
  Conn = Nothing
  fs = Nothing
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.