Doug G
Support Moderator
USA
6493 Posts |
Posted - 15 April 2002 : 18:27:23
|
First, if you are trying to get the session variable from the browser after the browser has loaded the page, you can't. At that time the server-side processing is completed.
You can however have the asp write the entire js html to your browser.
If it's a textual variable and you need to quote it in the html, try this. <% response.write "var zip = ' " & Session("clzip") & " ' " %>
at the proper place in your asp page.
btw, I added spaces between the quotes so you can read them, don't put them in final code.
====== Doug G ======
Edited by - Doug G on 15 April 2002 18:28:57 |
|
|