I inserted the <cfoutput>#server.coldfusion.productversion# #server.bluedragon.builddate#</cfoutput> Here's the Source Code on my local box:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> </head> <body> <cfform id="form1" name="form1" method="post" action="administration/requestCredentials.cfm"> <strong>Full Name:</strong> <cfinput type="text" name="FullName" required="yes" id="FullName" size="35" /> (Required) <br /> <strong>Username:</strong> <input name="Username" type="text" id="Username" size="35" /> (Optional) <br /> <strong>Email:</strong> <cfinput type="text" name="EmailAddress" validateat="onSubmit" validate="email" required="yes" id="EmailAddress" size="41" /> (Required)<br /> <input id="submit" type="submit" name="submit" value="Submit Form"/> </cfform> <cfoutput>#server.coldfusion.productversion# #server.bluedragon.builddate#</cfoutput> </div> </body> </html> Here is the browser's view source: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <script type="text/javascript" src="/bluedragon/scripts/cfform.js"></script> <script type="text/javascript" src="/bluedragon/scripts/mask.js"></script> <script language="javascript"> <!-- cfform_submit_status["form1"]=null; function check_TF_form1( theForm ){ cfform_isvalid = true; cfform_error_message = ""; cfform_invalid_fields = new Object(); if ( !tf_element_has_value( theForm['FullName'], "_TEXT" ) ){ tf_on_error( theForm, "FullName", theForm['FullName'].value, "Please provide a valid value" ); } if ( !tf_element_has_value( theForm['EmailAddress'], "_TEXT" ) ){ tf_on_error( theForm, "EmailAddress", theForm['EmailAddress'].value, "Please provide a valid value" ); } if ( !tf_validate_email( theForm['EmailAddress'] ) ){ tf_on_error( theForm, "EmailAddress", theForm['EmailAddress'].value, "Please provide a valid value" ); } if ( cfform_isvalid ){ return true; }else{ alert( cfform_error_message ); return false; } } //--> </script> </head> <body> <form name="form1" method="post" id="form1" action="administration/requestCredentials.cfm" onsubmit="return check_TF_form1(this);"> <strong>Full Name:</strong> <input type="TEXT" name="FullName" id="FullName" id="FullName" size="35"/> (Required) <br /> <strong>Username:</strong> <input name="Username" type="text" id="Username" size="35" /> (Optional) <br /> <strong>Email:</strong> <input type="TEXT" name="EmailAddress" id="EmailAddress" id="EmailAddress" size="41"/> (Required)<br /> <input id="submit" type="submit" name="submit" value="Submit Form"/> </form> 1.2 2009-10-27 15:58:59 GMT </div> </body> </html> On Wed, Dec 14, 2011 at 2:13 PM, Mats Stromberg <[email protected]>wrote: > Well, I know that :) > > > On Wed, Dec 14, 2011 at 10:01 PM, Alan Williamson (aw2.0 cloud experts) < > [email protected]> wrote: > >> i can assure you that we are NOT using any scripts from any other engine >> >> as you were >> >> >> Mats Stromberg wrote: >> >>> Hm... is OpenBD using Adobe's CFFORM scripts? >>> Or is this a ACF Server and not an OpenBD? >>> >>> >> -- >> online documentation: http://openbd.org/manual/ >> google+ hints/tips: >> https://plus.google.com/**115990347459711259462<https://plus.google.com/115990347459711259462> >> >> http://groups.google.com/**group/openbd?hl=en<http://groups.google.com/group/openbd?hl=en> >> > > -- > online documentation: http://openbd.org/manual/ > google+ hints/tips: https://plus.google.com/115990347459711259462 > http://groups.google.com/group/openbd?hl=en > -- online documentation: http://openbd.org/manual/ google+ hints/tips: https://plus.google.com/115990347459711259462 http://groups.google.com/group/openbd?hl=en
