Examples of ASP form which send both email and insert row to a table

Where can I find examples of ASP form which send both email (via server not the user email client) and insert row to table when pressing a button.

Would you like to answer or comment?

Sign up for a free account, or sign in (if you're already a member).
  • 1027 views
Share Send to a friend Watch Report
 
 

Posted Answers

 
31 thumbs up

Born. Having the time of my life. Will die.

Hi This is your form (I kept it as simple as possible)



<html>
    <head>
        <title>Form</title>
    </head>
    <body>
        <form action="form.asp" method="post">
            Your name: <input type="text" name="fname" size="20" />
            <input type="submit" value="Submit" />
        </form>
    </body>
</html>


This is your form.asp (the action target of the form above).

<%
' Get the value of the field fname in the form above into a variable we declare
dim fname
fname = Request.Form("fname")

Set myMail = CreateObject("CDO.Message")
myMail.Subject = "Your first name"
myMail.From = "mymail@mydomain.com"
myMail.To = "someone@somedomain.com"
myMail.TextBody = "Your first name is: " & fname
myMail.Send
set myMail = nothing

' this is a connection to an Access database
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "X:/somewhere/yourdatabase.mdb"

' This is the SQL
sql="INSERT INTO tablename (firstName)"
sql=sql & " VALUES "
sql=sql & "('" & fname  & "')"

' This execute the sql anc close the connection
on error resume next
conn.Execute sql,recaffected
conn.close
%>

Posted 1 year ago ( permalink )
In reply to talr's question
ravidor was invited by Yedda to answer this question.

Rated as
#1 out of 1
0
0

Helpful?

line
line
line



Sign in to participate

Got an answer for talr? Would you like to comment on the posted answers, or vote for the one which you think is the best?

Sign up for a free account, or sign in (if you're already a member).

Explore Related Questions

Other people asked questions on similar topics, check out the answers they received:


I'm looking for a FREE web server which I can send ...

I'm looking for a FREE web server which I can send emails through. Thanks!!!
Submitted by amitre 3 months ago
  • viewed 275 times

Last answer posted 3 months ago by likestohelpothers


How much does a dedicated server cost?

How much does a dedicated server cost?
Submitted by doubleguitarpirate 1 year ago
  • viewed 1495 times

Last answer posted 7 months ago by Webhosting


Which FREE hosting site is the best?

Which FREE hosting site is the best?
Submitted by ravidor 9 months ago
  • viewed 598 times

Last answer posted 1 month ago by CJZoom



» More...

Explore Related Posts in Forums

Email Login, constant re-login requests - Web Hosting Forum - Web hosting...

Web hosting recommendations needed, reply via email

Hosting Email Only on cPanel (question) Web Hosting Talk - The largest, most...

How to Use Mailing List in Web Hosting Site?

BlackBerry and Web Hosting Email Accounts

Need Web Hosting for my Image Hosting Site

Email Error in Free Web Hosting? using ZC v1.3.6

Web Hosting and POP3 e-mail question

DNS Query - separate web and email hosting

Powered by
Feed - Subscribe to changes to this Q&A Blog
Copyright © 2006-2008, Yedda Inc. and respective copyright owners · CC License