Running Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; H010818; .NET
CLR 1.1.4322)
I am pretty close. I output the GetHTTPRequestData() "content" list and
got the list of form fields in the order that I have them in the form, but
when they output, they come in a different order. I have a 'billto" field
that shows up first, yet that is 6thg in the list that I am
outputting. Here is the code, maybe I am missing something obvious....
<cfloop index="i" list="#StructKeyList(FORM)#">
<cfif NOT #Len(FORM[i])# EQ 0>
<!--- If the field names are any of the ones specified,
don't output them --->
<cfswitch _expression_="#i#">
<cfcase value="FIELDNAMES"></cfcase>
<cfcase value="REDIRECT"></cfcase>
<cfcase value="REQUIRED"></cfcase>
<cfcase value="REALNAME"></cfcase>
<cfcase value="PRINT_CONFIG"></cfcase>
<cfcase value="PRINT_BLANK_FIELDS"></cfcase>
<cfcase value="RECIPIENT"></cfcase>
<cfcase value="SUBJECT"></cfcase>
<cfdefaultcase>
<b>#i#:</b> #FORM[i]#<br><br>
</cfdefaultcase>
</cfswitch>
</cfif>
</cfloop>
At 05:15 PM 6/9/2004, you wrote:
>What variable are you using to get a list of form fields?
>And on what userAgent/browser?
>
>Jerry Johnson
>
>
>
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

