asp classic - Passing a variable in ASP using reponse redirect -


i'm trying pass variable using response.redirect have page i'm processing info on contains:

divrec = request.querystring("div") divstring = "divisions.asp?"&divrec response.redirect  divstring 

but when try retrieve information in page using

<%  divrec = request.querystring("div") %>  <% =divrec %> 

the variable/string not display

i think missed querystring parameter in divstring variable.

try this:

divstring = "divisions.asp?div="&divrec 

you should able access parameter in receiving page now.


Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -