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

📄 webservicebaseclass2.asmx

📁 东软内部材料(四)asp等相关的教学案例 
💻 ASMX
字号:
<%@ Webservice Language="C#" class="WebServiceBaseClass" %>

using System.Web;
using System.Web.Services;

public class WebServiceBaseClass
{
  [WebMethod]
  public void SetApplicationState(string state)
  {
    HttpApplicationState Application;

    Application = HttpContext.Current.Application;

    Application["state"] = state;
  }

  [WebMethod]
  public string GetApplicationState()
  {
    HttpApplicationState Application;

    Application = HttpContext.Current.Application;

    return Application["state"].ToString();
  }
}

⌨️ 快捷键说明

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