Link to home
Start Free TrialLog in
Avatar of Lico_w
Lico_w

asked on

How do I use my VBScript Variable in my HTML code?

I have a meta redirect value on my html page (to redirect after 5 seconds) for example:

<meta http-equiv="refresh" content="5;url=http:www.google.com">

however I would like to append some params to the end of the URL. These params are stored in a variable called paramStr and it's created in VBScript.

How do I add these on?
ASKER CERTIFIED SOLUTION
Avatar of Big Monty
Big Monty
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can embed server side code directly within html as long as its surrounded by <% %>

with that in mine, <%=strParam%> is the same as <%Response.Write strParam%>
Avatar of Lico_w
Lico_w

ASKER

Thanks man, appreciate the help!