how to recive the hyper link passed value in visual asp.net code behind

liunx

Guest
Hi experts. I have diffculty reciving hyper link passed value in visual studio.net code behind asp.net. I
do not know how to recive this value and use it select statment.i be happy if some expert tell me
how i can use visual studio.net 2003 wizard to create that code for me.ThankHuh...He's looking to dig a parameter out of the querystring.

Here's an example:

Dim str As String
Dim col As Collections.Specialized.NameValueCollection
col = Request.QueryString
Dim arr As Array
arr = col.GetValues("parameter_name_goes_here")
If Not arr Is Nothing Then
str = Convert.ToString(arr.GetValue(0))
End If
 
Back
Top