ozpo1
09-18-2007, 05:05 PM
I have a page which recieve a variable from one page and then "choose" which page to call accordingly.
I would like to call to the new page and to send the value of the variable with the link that I'm using. How can I pass the variable itself?
Here is the code:
<%
project = Request.QueryString("project")
if project="Conditioning" then
Response.Redirect "air-conditioning/air-conditioning.asp?project"
end if
%>
I would like to call to the new page and to send the value of the variable with the link that I'm using. How can I pass the variable itself?
Here is the code:
<%
project = Request.QueryString("project")
if project="Conditioning" then
Response.Redirect "air-conditioning/air-conditioning.asp?project"
end if
%>