I'm supporting a web site (6 web servers and 2 DB servers) that's using ColdFusion MX Version: 6,1,0,83762. We have logging set up where we get email notification of errors. We have gotten 90 of these errors, since Oct. 2007, about undefined form elements, but they are clearly defined on the page. There are 10 different pages that this error has occurred on. And it's happening with users using both IE 6 and IE 7. It’s happening with both <cfform> and <form>. Some are text and some are checkboxes. Some pages post to themselves and some posts to a hidden window. And to top it off, I am unable to duplicate this issue in dev or production (nice, right?). Here are two examples of undefined values:
- <td>$<input type=text name="targprice" value="#Trim(NumberFormat(targprice,'999999.99'))#" tabindex="6" id=numberinput size="9" onFocus="select();" onBlur="doFormatCurrency(this);"></td>
-
-
<input type="checkbox" name="procs" value="#UrlEncodedFormat(sql)#" #chk#>
I've tried setting the database fields in question to null thinking that CF may be removing these fields because they are null but I'm still unable to reproduce it. I’ve also tried adding single and double quotes to some of the database fields and was unable to reproduce it.
Has anyone experienced this or have any ideas?