Hi
if I have a url/query like "localhost?a&b& c=123" then I thought I could
get these parameters and values by using
NameValueCollec tion query = HttpContext.Cur rent.Request.Qu eryString;
But if I then try "query.AllK eys" I only get two keys, namely "null"
and "c".
Is this correct behaviour? Are "a" and "b" considered to be values for
a null key - and how do I get them from the collection?
Thanks,
Peter
if I have a url/query like "localhost?a&b& c=123" then I thought I could
get these parameters and values by using
NameValueCollec tion query = HttpContext.Cur rent.Request.Qu eryString;
But if I then try "query.AllK eys" I only get two keys, namely "null"
and "c".
Is this correct behaviour? Are "a" and "b" considered to be values for
a null key - and how do I get them from the collection?
Thanks,
Peter
Comment