PDA

View Full Version : Form Design


bruce
07-28-2004, 01:18 AM
Try this

http://brainjar.com/asp/formmail/



[b]quote:</BLOCKQUOTE>

Post Edited By Moderator (Joel Thoms) : 10/3/2006 10:34:07 PM GMT

lgiacom
07-28-2004, 09:34 AM
Please help. Im trying to create forms in Dreamweaver that the results can be emailed to me and I cant get it to work. Can someone please help.

Thanks
Lisa Martin

darthpibe
08-23-2006, 06:37 AM
ive also need help with this i need to activate a form in dream weaver so i can recive mails from people how fills out my form



lgiacom said...
Please help. Im trying to create forms in Dreamweaver that the results can be emailed to me and I cant get it to work. Can someone please help.

Thanks
Lisa Martin

J.Bey
09-20-2006, 11:58 AM
What you need is a snippet of CGI code to do that; however, you can still use a feedback agent if you don`t know how to code in CGI. There are all kinds of them on the net. You can google them to find out.

Try search words ``feedback form``


Most of them has instruction on how to implement on your own site. Some of them are nice and clean , some of them require you to display an ads on your site if you want to use them(or make them work).

You can have some try on these.

THis is one of my sample code

[quote]<FORMACTION='http://cgi.freedback.com/mail.pl'METHOD=postNAME='emailform'CLASS='style13' onSubmit='returncheckFields()'>
<INPUTTYPE=hiddenNAME=toVALUE='yourmailaddress@your domain.com'>

<INPUTTYPE=hiddenNAME=subjectVALUE='FeedbackForm'>
</CODE>

J. Bey
Free-lancer IT Pro.
"Life is tough...but programming is FuN"</CODE>

mallybills
10-03-2006, 04:14 AM
This is what I've got for my form and script. I cannot figure out why it won't work.. I get an error that says it cannot find the page.../
<form action="/scripts/formmail.asp" method="post">
<!--<input name="_recipients" type="hidden" value="bob@example.com,get2max@example.com,bjdaisy@exampl e.com,brian31@example.com,donatgrandma@example.com (bob@example.com,get2max@msn.com,bjdaisy@xmission. com,brian31@xmission.com,donatgrandma@msn.com)" />-->
<input name="_recipients" type="hidden" value="malinda@example.net (malinda@homesinutah.net)" />
<input name="_replyTo" type="hidden" value="board@example.com (board@oakwoodparkhoa.com)" />
<input name="_subject" type="hidden" value="Web Site Board Contact Form" />
<input name="_fieldOrder" type="hidden" value="name,address,email,phone,member,reply,comments" />
<input name="_redirect" type="hidden" value="contact-ty.asp" />
<input name="_requiredFields" type="hidden" value="Name,phone,email,comments" />
<tr>
<td>Name[b] <input name="name" type="text" /> </td>
<td>Address[b] <input name="address" type="text" size="25" /></td>
</tr>
<tr> (etc...)

Here is my script (which is located in a "scripts" folder off of the main directory) and called formmail.asp

<%@ LANGUAGE="VBScript" %>
<% '************************************************* **************************
'* ASP FormMail *
'* *
'* Do not remove this notice. *
'* *
'* Copyright 1999-2002 by Mike Hall. *
'* Please see http://www.brainjar.com for documentation and terms of use. *
'************************************************* **************************
'- Customization of these values is required, see documentation. -----------
referers = Array("www.oakwoodparkhoa.com (http://www.oakwoodparkhoa.com)", "oakwoodparkhoa.com")
mailComp = "ASPMail"
smtpServer = "localhost"
fromAddr = "noreply@oakwoodparkhoa.com"
'- End required customization section. -------------------------------------
Response.Buffer = true
errorMsgs = Array()
(etc...)

Why won't this work???

I need help! I'm getting frustrated and will soon take up drinking. (lol)

Malinda



Post Edited By Moderator (mjp) : 10/5/2006 12:08:03 AM GMT