It appears that the referrer value is populated:
HTTP_REFERER    
http://www.jury-duty.org/index.cfm/fuseaction/main.contact/index.cfm

Here's the user agent, anything look off?
HTTP_USER_AGENT  Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET 
CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; RRHSO_BLD1)


I had the form reload on error with values pre-populated.  I think that's where 
my error was:
<select name="contactmeby">
                                <option value=""<cfif attributes.contactmeby eq 
""> selected</cfif>></option>
                                <option value="Email"<cfif 
attributes.contactmeby eq "Email"> selected</cfif>>Email</option>
                                <option value="Telephone"<cfif 
attributes.contactmeby eq "Telephone"> selected</cfif>>Telephone</option>
                        </select>

has been changed to:

<select name="contactmeby">
                                <option value=""<cfif 
isdefined("attributes.contactmeby") and attributes.contactmeby eq ""> 
selected</cfif>></option>
                                <option value="Email"<cfif 
isdefined("attributes.contactmeby") and attributes.contactmeby eq "Email"> 
selected</cfif>>Email</option>
                                <option value="Telephone"<cfif 
isdefined("attributes.contactmeby") and attributes.contactmeby eq "Telephone"> 
selected</cfif>>Telephone</option>
                        </select>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317118
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to