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

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

php - joomla get content in onBeforeCompileHead function -