我是 javascript 世界的新手,并且有一个简单的测试来读取 javascript 中的会话变量:
我的asp文件:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Session("id")=1234
Session("code")="ZZ"
%>
我的html文件:
<html>
<head></head>
<body>
<script type="text/javascript" src="asp/testSession.asp">
alert("Session ID " + Session("id"));
</script>
</body>
我究竟做错了什么?