I’m new to VB code but i know a bit of php. How would I get the same effect as the $_GET function (PHP) in VB.
Encase your wondering I want the VB version of the $_GET function to be used like this
http://yourdomain.com/?value=sometext
I’m new to VB code but i know a bit of php. How would I get the same effect as the $_GET function (PHP) in VB.
Encase your wondering I want the VB version of the $_GET function to be used like this
http://yourdomain.com/?value=sometext
Request.Querystring(“value”)
Thanks!