Use Request.QueryString()
If your URL is: http://www.yoursite.com/mypage.asp?myvariable=myvalue
Then:
Request.QueryString("myvariable")
Will equal:
myvalue
So to output it onto the page, use:
Resposne.Write(Request.QueryString("myvariable"))
__________________ Minaki Serinde MCP
"Wow, Linux is nearly on-par with Windows ME!"