RE: picking up form variables on the action page??

2000-08-24 Thread Clint Tillerson
If no form variables are passed, then form.fieldnames will not be defined. IsDefined('form.fieldnames') = False If a checkbox exists in a form and is not checked when the form is processed, then the checkbox variable will not be defined. IsDefined('form.CheckboxVariableName') = False As

RE: OnRequestEnd.cfm

2000-08-22 Thread Clint Tillerson
Could someone offer a brief explanation regarding what OnRequestEnd.cfm is used for? I've never heard of this one. Does it process after the requested cfm template processes as the name might suggest? -- Archives:

Re: Hidden Fields Problem

2000-08-22 Thread Clint Tillerson
Here's the problem: missing quotation mark at the end of "#Form.cust_name# *INPUT TYPE="hidden" NAME="cust_name" VALUE="#Form.cust_name# -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

Back and Single Select Form Fields

2000-08-18 Thread Clint Tillerson
Hello all, Here is an issue I'm struggling with. Perhaps someone can shed some light or at least confirm I'm stuck with this behavior so I can move on. Background: A form is built dynamically step by step based on the user input. It consists of several single value and multi value select

Re: getting speed of verity search

2000-08-18 Thread Clint Tillerson
Is this the type of thing you're looking for? Put this before the search: CFSET tickBegin = GetTickCount() Put this after the search: CFSET tickEnd = GetTickCount() Then, this will convert the time to seconds: CFSET searchTimeSec = (tickEnd - tickBegin)/1000 This will convert the time to