Obtain a parameter by means of a querystring

0

When I move from one page to another, I send the user parameter by means of a querystring, being on the new page I see that the url has the value that I am bringing (user) but, I do not know how to get that value being in the new page.

    
asked by ARR 30.05.2018 в 19:09
source

1 answer

2

Dim usr As String = Request.QueryString("usuario")

    
answered by 30.05.2018 / 19:24
source