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

CF & Dreamweaver Forms

Status
Not open for further replies.

keen01

MIS
Nov 16, 2004
73
US
How do I get the email to query in a dreamweaver form. I tried <form action="mailto:#email#" method="post">
 
Any coldfusion code MUST be wrapped in <cfoutput></cfoutput> tags.

In you example:
<form action="mailto:<cfoutput>#email#</cfoutput>" method="post">

How are you populating the #email# var in your example?

____________________________________
Just Imagine.
 
Any coldfusion code MUST be wrapped in <cfoutput></cfoutput> tags.
Um...No...only the output of a ColdFusion variable must be wrapped in cfoutput tags, not any ColdFusion code. [thumbsup2]

Hope This Helps!

ECAR
ECAR Technologies

"My work is a game, a very serious game." - M.C. Escher
 
i would do this instead ...


<cfif IsDefined('FORM.submit')>
<cfmail from="..." to="..." subject="...">
some stuff
</cfmail>
<cfelse>
form goes here

<input type="submit" name="submit" value="submit">

</cfif>

hope it helps...

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top