Click to See Complete Forum and Search --> : how to recive the hyper link passed value in visual asp.net code behind


method
05-20-2005, 06:37 PM
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.Thank

Cstick
05-20-2005, 08:41 PM
Huh...

CardboardHammer
05-24-2005, 10:16 AM
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