Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
plarts #1
URL and blanc characters
An URL adress is passed via a Javascript :
[url]http://192.168.0.3:8500/archive_sys_new/warehouse/flex_reports.cfm?e_dept=Qualit[/url]
y%20&%20Compliance%20Management When i want to get this url variable
'e_dept' with CF, #url.e_dept# I get e_dept='quality' , the rest is lost.
I cannot use URLEncodedFormat at this stage, because the link is dynamic and
done via a javascript. How to get 'Quality & Compliance Management' from
the URL and not only 'Quality' ? I tried URLdecode, it does not do it.
Thanks for help. Pierre.
plarts Guest
-
What's up with the fat characters in my PDF? (I and L)
Same issue here. In Acrobat Reader 7.0.8: <http://home.mac.se/star-affinity/acrobat.png> In Preview (Mac OS X 10.4.7):... -
restrict characters
in the action script i create //allowed character var restrict_:String = "a-z,A-Z,0-1,!,@,$,%,^,*,(,),,{,},;,\',\",/,\\,-,.,+,|, ,,"; and in... -
More special characters in FH
Hello, Just one question: what do you do to insert ligatures and some "advanced" characters (glyphs) into the text created in FH? Thanks,... -
how to read japanese characters (multilingual characters) from a text file and save them in Access database ???
HI All i m trying to read a text file, having some japanese characters and saved as UTF-8 encoding. I m using ASP,FSO ... my code is below,... -
Numeric characters after alphabetic characters sorting varchar2 fields
Hi! Why numeric characters are placed after alphabetic characters sorting varchar2 fields? Example: AAA BBB 111 FFF XXX -
eastinq #2
Re: URL and blanc characters
If e_dept is the only variable being passed in the URL then you could use the CGI.QUERY_STRING value like this:
#ReplaceNoCase(URLDecode(CGI.QUERY_STRING),"e_dept =","")#
eastinq Guest
-
plarts #3
Re: URL and blanc characters
I found the problem, this was because there are some '&' in the content of
the passed vaiable. Then it takes whatever after the & like the next
variable, means that the content of the variable is cutted. To solve this, I
replaced the char & by %26 in JavaScript, before sending the URL. Then
it works. Thanks for your interest. Pierre.
plarts Guest



Reply With Quote

