S
Stephen Witter
I have a hyperlink and I want the navigateURL to point to another web
form while passing a value of a textbox as a querystring:
<asp:hyperlink navigateURL="MyPage.aspx?ID=<%# MyTexBox.text %> etc..
I can't seem to figure out how to do this
Then in the other form it doesn't seem to like either of these
dim intID as integer=request.querystring("ID")
or
dim intID as integer=request.querystring["ID"]
I am fairly new to asp.net and woudl appreciate the help.
form while passing a value of a textbox as a querystring:
<asp:hyperlink navigateURL="MyPage.aspx?ID=<%# MyTexBox.text %> etc..
I can't seem to figure out how to do this
Then in the other form it doesn't seem to like either of these
dim intID as integer=request.querystring("ID")
or
dim intID as integer=request.querystring["ID"]
I am fairly new to asp.net and woudl appreciate the help.