⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ch11-04-01.aspx

📁 这是一个asp.net的全文教程.里面还有数据库的数据.对初学者有很大的帮助
💻 ASPX
字号:
<Html>
<Head>
<Title>Ch11-04-01.aspx Session 对象的使用</Title>
</Head>
<Body>
目前的 SessionID 为:
<% = Session.SessionID %><BR>
<%
If IsNothing(Session("Counters")) Then
	Response.Write("尚未建立Session变量")
Else
	Response.Write("Session(""Counters"")变量的值为:")
	Response.Write(Session("Counters"))
End if 
%><BR>
将Session("Counters")变量的值加1<BR>
<%
Session("Counters") = Session("Counters") + 1 
%>
目前Session("Counters")变量的值为:
<% = Session("Counters") %><BR>
</Body>
</Html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -