Hi,
I want to write (make it appear on the screen) one of the variables that I have changed after getting it from the querystring, but it does not seem to write it.
E.g. URL is:
Now I am doing this in the code:
and later on I need the A HREF link to be that Pagerefold, but doing this:
Why and how do I fix it so that it writes what the variable is, e.g in this case ../introduction.asp
Thank you
James
I want to write (make it appear on the screen) one of the variables that I have changed after getting it from the querystring, but it does not seem to write it.
E.g. URL is:
Code:
[URL unfurl="true"]Http://www.myisp.com/Hello.htm?Pageref=../introduction.asp[/URL]
Now I am doing this in the code:
Code:
<%
Dim Pagerefold
Pagerefold = Request.QueryString("Pageref")
%>
and later on I need the A HREF link to be that Pagerefold, but doing this:
Code:
<a href="<%response.write "Pagrefold"%>
<%=variablestring %>">Return to page</a>
Why and how do I fix it so that it writes what the variable is, e.g in this case ../introduction.asp
Thank you
James