|
 |
access_asp thread: Form Submission Question
Message #1 by "Ryan G. Passey" <rgpassey@h...> on Sat, 20 Jul 2002 06:06:00
|
|
Hey guys,
I'm a novice web designer, and am making a website for a relative's
business. He wants a simple form submission page where he will receive
the name, email and phone number from interested applicants, then send
that info to an email address and/or database. I want to make it as
simple as possible, and still work. How is this done in ASP?
Any help on this matter will be greatly appreciated.
-Ryan Passey
Message #2 by "Charles Mabbott" <aa8vs@m...> on Sat, 20 Jul 2002 10:17:01 -0400
|
|
Here is an HTML example to send e-mail to get you started,
at least it will give you some ideas....
Regards,
Chuck
=======================page start=========================
<HTML>
<!-- form submittal with questions for user to fill in
and mails to designated person 5/26/99-->
<title>Submission form</title>
<LINK REL=stylesheet TYPE= "text/css" Href="style1.css" >
<body >
<CENTER>
<h1>Interstate 94 Repeater Association<br>Interest/ Inquiry</h1>
<FORM ACTION="mailto:<email address>?Subject=From I94 Web page"
ENCTYPE="text/plain" METHOD=POST>
</form>
<table height="488" width="645">
<td height="484" width="686">
<h2>First Name:<INPUT NAME="fname" TYPE="text" SIZE="25"><br>
Last Name: <INPUT NAME="lname" TYPE="text" SIZE="35">
<br>
Call Sign (if any) <INPUT NAME="Csign" TYPE="text" SIZE="9">
</h2>
<br>
<table width= "100%">
<tr><td ><h2>
What is your license class</h2> <b>(SWL default)</b>
<P><SELECT NAME="background">
<OPTION VALUE="SWL" SELECTED>Not Licensed
<OPTION VALUE="Technician">No code tech
<OPTION VALUE="Tech Plus">Tech Plus
<OPTION VALUE="General">General
<OPTION VALUE="Advanced">Advanced
<OPTION VALUE="Extra">Extra
</SELECT></P>
</td>
<td >
<b>If you wish the form sent to you via 'snail mail'
Please enter your mailing address, phone number
and please don't forget zip code:</b>
</td>
</tr>
<tr>
<td align=center valign=center colspan=2>
<TEXTAREA NAME=COMMENT ROWS=12
COLS=45></TEXTAREA><p>
</td>
</table>
<!-- this is a comment -->
<INPUT NAME="Mail" TYPE="submit" VALUE="Mail the Form"><INPUT NAME="name"
TYPE="reset" VALUE="Reset"></FORM> <b><a href="index.htm#top">Home</a>
page
</b></CENTER>
<h3>Last update: 6/01/02</h3>
</table>
</body>
</HTML>
=================== page end ==========================
>From: "Ryan G. Passey" <rgpassey@h...>
>Reply-To: "Access ASP" <access_asp@p...>
>To: "Access ASP" <access_asp@p...>
>Subject: [access_asp] Form Submission Question
>Date: Sat, 20 Jul 2002 06:06:00
>
>Hey guys,
> I'm a novice web designer, and am making a website for a relative's
>business. He wants a simple form submission page where he will receive
>the name, email and phone number from interested applicants, then send
>that info to an email address and/or database. I want to make it as
>simple as possible, and still work. How is this done in ASP?
>
>Any help on this matter will be greatly appreciated.
>-Ryan Passey
"If your not part of the solution,
there is good money to be made
prolonging the problem."
http://68.43.100.7:81/aa8vs
_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com
|
|
 |