psRequestQueryString - cWebHttpHandler
Contains the query string of the request while handling a request
Type: Property
Access: Read/Write
Data Type: String
Parameters: None
Syntax
Property String psRequestQueryString
| Access Type | Syntax |
|---|---|
| Read Access: | Get psRequestQueryString to StringVariable |
| Write Access: | Set psRequestQueryString to StringVariable/Value |
Description
This property contains the query string of the request while handling a request. This value is always unescaped HTML.
Sample
the query string:
?cookie=Harm%26John%26&Result=This is a test QueryString!
results in this value in psRequestQueryString:
cookie=Harm%26John%26&Result=This%20is%20a%20test%20QueryString!