3

我正在使用需要会话控制的 ASP 系统。使用 ASP 启动和检索会话值的语法是什么?

4

3 回答 3

2

句法:

<% Session[.collection|property|method|event] %>

例子

<% Option Explicit %>
<html>
<head>
<title>First Page</title>
</head>
<body>
<%
    Session.TimeOut  = 60
    Session("SiteName") = "www.example.com"
    Session("Name") = "Mr.Incredible"
    Response.write("Session Created<br><br>")
    Response.write("<a href=redirect.asp>Check Session</a>")
%>
</body>
</html>

重定向页面:

<% Option Explicit %>
<html>
<head>
<title>Redirect Page</title>
</head>
<body>
<%
    Response.write "Site Name = " & Session("SiteName") & "<br>"
    Response.write "Name = " & Session("Name")& "<br><br>"
%>
</body>
</html>
于 2012-06-25T09:33:06.740 回答
2

在有人因为您不使用 Google 而大喊大叫之前,请先查看以下链接

http://www.w3schools.com/asp/asp_sessions.asp

于 2012-06-25T09:29:24.357 回答
1
      Session("name") = "something"   //storing value in session


      something = Session("name") //retrieving value from session
于 2012-06-25T09:33:20.333 回答