Hey,
I was wondering how you would get the vakue of reportvalue in this web addy :
http://www.yourdomainname.com/web1.a...portvalue=9944
Thanks,,
Printable View
Hey,
I was wondering how you would get the vakue of reportvalue in this web addy :
http://www.yourdomainname.com/web1.a...portvalue=9944
Thanks,,
VB:
C#:Code:Dim myQueryString As NameValueCollection = Request.QueryString
Dim myString As String = myQueryString("reportvalue")
I am doing those off the top of my head, and there may be a little syntax changes you need to make. NameValueCollection is in the System.Collections.Specialized namespace.Code:NameValueCollection myQueryString = Request.QueryString;
string myString = myQueryString["reportvalue"].ToString();