K
Kevin
I am attempting to fetch the value of a paramter passed in on the http
request url. Example:
http://localhost.mypage.aspx?ID=12345
In the URL above I am wanting to retrieve the value of the key ID.
When I execute the code below I am getting the entire URL and not just
the value of the key ID. Any suggestions?
string idValue = Request.Params.Get("ID");
Thanks...Kevin
request url. Example:
http://localhost.mypage.aspx?ID=12345
In the URL above I am wanting to retrieve the value of the key ID.
When I execute the code below I am getting the entire URL and not just
the value of the key ID. Any suggestions?
string idValue = Request.Params.Get("ID");
Thanks...Kevin