Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add to Dbase and send E-mail

Status
Not open for further replies.

Rossy

IS-IT--Management
Jun 21, 2000
6
ZA
How can I add the contents of an HTML for to a database AND send a notification e-mail to a web manager at the same time? I know how to do both individually but not concurrently.
 
Rossy,

Consider this pseudo code...

begin submit.asp -
Dim your variables

Pull in your variables from your form (request.form)

open your connection string and insert variables into record

close your connection

Use CDONTS (or whatever method your prefer) to send an e-mail to the Web Manager.

- end submit.asp

I know this is sequential within the .asp file but it is probably the best you are going to get. I don't believe you can achieve true concurrency with any method.

[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top