I'm new to the javascript world and have a simple test to read session vars in javascript:
my asp file:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Session("id")=1234
Session("code")="ZZ"
%>
my html file:
<html>
<head></head>
<body>
<script type="text/javascript" src="asp/testSession.asp">
alert("Session ID " + Session("id"));
</script>
</body>
What am I doing wrong?
I'm new to the javascript world and have a simple test to read session vars in javascript:
my asp file:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Session("id")=1234
Session("code")="ZZ"
%>
my html file:
<html>
<head></head>
<body>
<script type="text/javascript" src="asp/testSession.asp">
alert("Session ID " + Session("id"));
</script>
</body>
What am I doing wrong?
Share Improve this question asked Apr 10, 2013 at 12:57 user2225394user2225394 251 gold badge1 silver badge3 bronze badges 02 Answers
Reset to default 4All ASP code has to be placed between <%
and %>
tags to be processed server-side:
alert("Session ID " + <%=Session("id") %>);
^^^ add tags ^^
Also, you can use <%=
as a shortcut to output a variable. It's short for Response.Write
.
You cannot mix javascript and asp in the way you did it. Javascript is executed locally while asp is piled by the server and then send to your browser.
When the page reaches your browser, only the product of the asp pilation remains. In order to use the value or print it, you should do the following :
<html>
<head></head>
<body>
<script type="text/javascript" src="asp/testSession.asp">
alert("Session ID " + <%=Session("id")%>);
</script>
</body>