On 5/31/00, Cristi penned:
>If anyone can find some time...
Can't answer the javascript question.
>
>2) How do I manage strings containing special characters as dbl. quote (i.e.
>")
> Should I prefix them with something.
>
> I'd like to have an output like
>
> say "hello"
You can pass the ascii code.
say #CHR(34)#hello#CHR(34)#
>3) How can I get the value of each field in a query string?
> I know the #cgi.query_string# which returns the entire query
>string, but I
>want to access specific fields
One way is to loop through:
<cfloop index="queryvalue" list="#cgi.query_string#" delimiters="&">
#queryvalue#<br>
</cfloop>
That would return:
variable1=value1
variable2=value2
variable3=value3
variable4=value4
variable5=value5
variable6=value6
There are any number of things you could do with each item by doing a
find() function and setting what's left or right of the = sign.
--
Bud Schneehagen - Tropical Web Creations
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.