Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

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

New Here ,
Mar 20, 2012 Mar 20, 2012

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.

500
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 20, 2012 Mar 20, 2012
LATEST

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.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources