相关代码 |
|
Ch11-04-01.aspx Session 对象的使用 目前的 SessionID 为: If IsNothing(Session("Counters")) Then Response.Write("尚未建立Session变量") Else Response.Write("Session(""Counters"")变量的值为:") Response.Write(Session("Counters")) End if %> 将Session("Counters")变量的值加1 Session("Counters") = Session("Counters") + 1 %> 目前Session("Counters")变量的值为:
相关资源 |
|