Click to See Complete Forum and Search --> : How correctly retrieve values from QueryString?


Closed
09-02-2004, 12:56 AM
Hi!
I'm trying to send values to the server. URL likes test.asp?id=3322+. But in test.asp Request.QueryString("id") shows me only 3322, not 3322+. How can i retrieve comlete value of id parameter?

Thanks!

Zoboda
09-02-2004, 07:42 AM
you could try using test.asp?id=3322&useplus=true

id = Request.Querystring("id")
if Request.Querystring("useplus")=true Then
id=id&"+"
End If

there might be another way but thats how I would do it