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

📄 usesessioncookie.aspx

📁 Other things about csharp. you could learn from this
💻 ASPX
字号:
<%@ Import Namespace="System.Net" %>

<Script Language="C#" runat="Server">
public void Page_Load(Object sender, EventArgs e)
{
  SessionStateExample sessionExample = new SessionStateExample();

  CookieContainer cookieContainer = new CookieContainer();
  sessionExample.CookieContainer = cookieContainer;

  sessionExample.SetSession("name", "rob");
  lblSession1.Text = sessionExample.GetSession("name");
}
</Script>
<Font face=arial>
Value: <asp:label id="lblSession1" runat="server"/>
</Font>

⌨️ 快捷键说明

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