home
support
contact us
Register
Login
Forum Index
»
Internet and Intranet Applications with PowerBuilder 6
»
Advanced search
Thanks Tom ! List of Escape Codes?
This topic is
READ ONLY
import-bot
(20211)
Offline
Apr 21, 1999 @ 9:00 PM
#1
[Originally posted by ngs]
Tom,
Thanks for the tip. Where can I obtain a list of escape codes.
Matt
import-bot
(20211)
Offline
Apr 29, 1999 @ 9:00 PM
#2
Re: Thanks Tom ! List of Escape Codes?
[Originally posted by ezad1]
> Tom,
>
> Thanks for the tip. Where can I obtain a list of escape codes.
>
> Matt
Matt,
Any string with the format %HH is an escape code. You need to use them when
you need to use a reserved URI character in the URL. Here's the list of
reserved chars from
http://www.w3.org/Protocols/HTTP/1.1/draft-ietf-http-v11-spec-02.html
reserved = ";" | "/" | "?" | ":" | "@" | "&" | "="
Now if you use POST for forms instead of GET, you won't have to do this.