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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Forms in Dreamweaver

Status
Not open for further replies.

KJBen

Technical User
Dec 1, 2001
21
0
0
GB
Ive created a form in Dreamweaver but how can I make the submit bettuon email an email address?
 
sorry, I am using Dreamweaver 3
 
What you need is to add the action to it :

Code:
<form [b]action=&quot;mailto:somebody@microsoft.com&quot;[/b]>
Name : <input type=&quot;text&quot;><br />
E-mail : <input type=&quot;text&quot;><br />
<input type=&quot;submit&quot; value=&quot;Send E-mail&quot;>
</form>
Regards

Big Bad Dave

davidbyng@hotmail.com
 
You add that in the <body? tag, right where the <form> properties are defined. You should already have a <form> tag on you're page...
Just add the extra stuff in the <form> tag...action=&quot;mailto:somebody@microsoft.com&quot; I have not failed; I merely found 100,000 different ways of not succeding...
 
Does this require CGI hosting on your server? Also I've heard from another forum if you do something like this a alert comes up. This is probably different. Anyhow all responses would be appreciated.
 
No you don't need CGI or anything... I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top