📄 sessionservice.asmx
字号:
<%@ WebService Class="SessionService" Language="C#" %>
using System;
using System.Web.Services;
[WebService( Namespace="http://yourdomain.com/webservices" )]
public class SessionService : WebService {
[WebMethod( EnableSession=true )]
public int GetSessionCounter() {
if (Session["Counter"]==null)
Session["Counter"]=0;
Session["Counter"] = (int)Session["Counter"] + 1;
return (int)Session["Counter"];
}
[WebMethod( EnableSession=true )]
public string GetSessionID() {
return Session.SessionID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -