Nov 28, 2006 #1 keen01 MIS Joined Nov 16, 2004 Messages 73 Location US How do I get the email to query in a dreamweaver form. I tried <form action="mailto:#email#" method="post">
How do I get the email to query in a dreamweaver form. I tried <form action="mailto:#email#" method="post">
Nov 28, 2006 #2 GUJUm0deL Programmer Joined Jan 16, 2001 Messages 3,676 Location US 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. http://www.imajinarts.com Upvote 0 Downvote
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. http://www.imajinarts.com
Nov 29, 2006 #3 ecobb Programmer Joined Dec 5, 2002 Messages 2,190 Location US Any coldfusion code MUST be wrapped in <cfoutput></cfoutput> tags. Click to expand... Um...No...only the output of a ColdFusion variable must be wrapped in cfoutput tags, not any ColdFusion code. Hope This Helps! ECAR ECAR Technologies http://www.ecartech.com "My work is a game, a very serious game." - M.C. Escher Upvote 0 Downvote
Any coldfusion code MUST be wrapped in <cfoutput></cfoutput> tags. Click to expand... Um...No...only the output of a ColdFusion variable must be wrapped in cfoutput tags, not any ColdFusion code. Hope This Helps! ECAR ECAR Technologies http://www.ecartech.com "My work is a game, a very serious game." - M.C. Escher
Nov 29, 2006 #4 FALCONSEYE Programmer Joined Jul 30, 2004 Messages 1,158 Location US 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... http://www.jetansolutions.com Upvote 0 Downvote
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... http://www.jetansolutions.com