The Request Object
Request and Response Mastery · Created 2026-06-01 13:34:28
ASPPY fully implements Classic ASP Request. Use it to read all incoming data from the browser.
Key Collections
Request.QueryString('key') - URL parameters like ?name=value
Request.Form('key') - POST form body fields
Request.Cookies('name') - cookie values from browser
Request.ServerVariables('HTTP_USER_AGENT') - HTTP headers
Request('key') - searches all collections in order
ASPPY Behavior
Request.Form parses both urlencoded and multipart/form-data. QueryString reads from the URL. ServerVariables mirrors CGI plus ASPPY-specific keys.
Live Demo →
Key Collections
Request.QueryString('key') - URL parameters like ?name=value
Request.Form('key') - POST form body fields
Request.Cookies('name') - cookie values from browser
Request.ServerVariables('HTTP_USER_AGENT') - HTTP headers
Request('key') - searches all collections in order
ASPPY Behavior
Request.Form parses both urlencoded and multipart/form-data. QueryString reads from the URL. ServerVariables mirrors CGI plus ASPPY-specific keys.
Live Demo →