sessionstate.asmx

来自「Professional ASP.NET source code」· ASMX 代码 · 共 18 行

ASMX
18
字号
<%@ WebService Language="C#" Class="SessionStateExample" %>

using System.Web.Services;

public class SessionStateExample : WebService
{
  [WebMethod(EnableSession=true)]
  public void SetSession(string key, string item)
  {
    Session[key] = item;
  }

  [WebMethod(EnableSession=true)]
  public string GetSession(string key)
  {
    return Session[key].ToString();
  }
}

⌨️ 快捷键说明

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