The QueryString property is a NameValueCollection object, so you could use something like...
foreach (string key in Request.QueryString.Keys)
{
Trace.Warn(Request.QueryString[key]);
}
I haven't tested that, just a logical guess.
Jeff 'Jones' Putz
POP World Media, LLC
|