Castalian

The Request Object

The Request object is used to get details that the browser and user supply.

request.querystring dictionary

foo = request.querystring["var"]
The query string dictionary contains all variables supplied in the URL; for example, a page called as http://www.foo.com/index.cas?id=2&name=wibble would have request.querystring set to the Python dictionary { "id": "2", "name": "wibble" }.
QueryString notes: