I'm having trouble finding a good way to check if a querystring item exists before I try and access it. Right now I'm doing the following but there has to be a better way...
How can I find out if "someItem" is in the queryString before accessing??? Thanks for the help
Code:
try
{
x = Request.QueryString["someItem"];
}
catch { }
How can I find out if "someItem" is in the queryString before accessing??? Thanks for the help

