I have a value in my JavaScript but I need my ASP code on the same page to be able to look at this value, but I can't get it to.
For example, I have the following JavaScript code:

<SCRIPT LANGUAGE=JAVASCRIPT>
thisvalue="bob";
alert(thisvalue);
</SCRIPT>


<%
// i need to find out the value of thisvalue, but i can't
%>

Can anybody tell me of a way of getting this value, when it's on the same page.