statefulmethodsandproperties.asmx
来自「东软内部材料(四)asp等相关的教学案例 」· ASMX 代码 · 共 22 行
ASMX
22 行
<%@ WebService Language="C#" Class="MethodsAndProperties" %>
using System.Web.Services;
public class MethodsAndProperties {
private string _name;
public string YourName {
[WebMethod(EnableSession=true)]
get {
return _name;
}
[WebMethod(EnableSession=true)]
set {
_name = value;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?