D
David Smith
Ok, I have a button in an ascx usercontrol which is supposed to do a
response.redirect to a new page, including an id as in:
Response.Redirect("anotherpage.aspx?id=" + id);
On the "anotherpage.aspx", Im using:
string id = Request.Form["id"];
id is *always* null... It seems Ive used these commands a hundred times, and
this makes no sense. The url in Explorer's address bar reads
http://localhost/myproject/anotherpage.aspx?id=1234
ugh.... any ideas?
Thanks
response.redirect to a new page, including an id as in:
Response.Redirect("anotherpage.aspx?id=" + id);
On the "anotherpage.aspx", Im using:
string id = Request.Form["id"];
id is *always* null... It seems Ive used these commands a hundred times, and
this makes no sense. The url in Explorer's address bar reads
http://localhost/myproject/anotherpage.aspx?id=1234
ugh.... any ideas?
Thanks