Hi Alan,

  I don't know of one, but it shouldn't be hard to write one, either as a 
custom tag or a function.
  The form scope is a structure, and you can use cfloop to loop over a 
structure.
  The code will be something like this:

<cfloop collection="form" item="MyFormField">
   <cfset Newvalue = [Processing Code Here] >
   <cfset Changed = StructUpdate(form,  MyFormField,  NewValue)>
</cfloop>

  It could easily be written in CFScript too.


At 12:06 PM 9/22/2002 -0400, you wrote:
>I'm working to lock down our web solutions across all client sites, and
>it's been pretty intense implementing individual form-field level code to
>filter out metacharacters <(# etc...  Is there a CF tag out there that
>allows this conversion to be automatically applied to an entire form's
>fields regardless of how many fields, what the field names are, or even if
>some fields are null?
>
>
______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to