Skip to main content
Participant
March 20, 2012
Question

Doing a test on a cfm email form. When filled in form is received email lists all fields as "left b

  • March 20, 2012
  • 1 reply
  • 530 views

A newbie--trying to edit last year's form for this year. When filled in test form is sent--email lists fields and indicates each is "left blank". In the code I see an entry for each field that reads: <cfset xxxxx ="left blank"> is there a connection?. ie,

<cfif IsDefined('Form.Book_Evaluation')>

<cfset Book_Evaluation=REReplaceNoCase(#Form.Book_Evaluation#, "<[^>]*>", "" , "ALL" )>

<cfelse>

<cfset Book_Evaluation="left blank">

</cfif>

Thanks.

    This topic has been closed for replies.

    1 reply

    Inspiring
    March 20, 2012

    At the top of your page, put in this:

    <cfdump var="#form#">

    that will tell you what form fields your are getting.  Then you should be able to see which fields should exist and which ones do not.