Hello, In a DTML method, I am issuing the following call: <dtml-call "RESPONSE.redirect(someURL)"> someURL contains characters that should not be escaped ('@', ':'), but the default behavior kicks in and I end up with '%3' instead of ':'. It causes my redirection to fail. Is there a workaround? Thank you, Robert __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com
Robert Jean wrote at 2003-7-14 12:26 -0700:
In a DTML method, I am issuing the following call:
<dtml-call "RESPONSE.redirect(someURL)">
someURL contains characters that should not be escaped ('@', ':'), but the default behavior kicks in and I end up with '%3' instead of ':'. It causes my redirection to fail. Is there a workaround?
The code you show does not magically escape characters. You must do this explicitely (otherwise, it will not be done). Dieter
participants (2)
-
Dieter Maurer -
Robert Jean