|
As shown in the example above
<a href=example.asp?id=1>ID : 1</a>
how do I retrieve the value of id?
is it by Request.Form() or Request.QueryString()?
Why?
|
|
|
By Reqest.Querystring
Why? Because it's a querystring if it appears comes from a hyperlink like that. Request.Form receives stuff that is sent from forms.
|
|
|
|
|
|
|
|
|
|