J
Jeff
hey
asp.net 2.0
in the page_load event of a web page I place this code:
NameValueCollection parameters = Request.QueryString;
string username = parameters[0].ToString();
The URL has a querystring, for example like this: Default.aspx?user=newbie
But this code don't get the querystring, the parameters collection gets no
entries from this line "NameValueCollection parameters =
Request.QueryString;"
What am I doing wrong here?
Jeff
asp.net 2.0
in the page_load event of a web page I place this code:
NameValueCollection parameters = Request.QueryString;
string username = parameters[0].ToString();
The URL has a querystring, for example like this: Default.aspx?user=newbie
But this code don't get the querystring, the parameters collection gets no
entries from this line "NameValueCollection parameters =
Request.QueryString;"
What am I doing wrong here?
Jeff