helloworld.asmx
来自「Professional ASP.NET source code」· ASMX 代码 · 共 12 行
ASMX
12 行
<%@ WebService Language="C#" Class="HelloWorld" %>
using System.Web.Services;
public class HelloWorld {
[WebMethod]
[EncryptionExtension(Encrypt=EncryptMode.None)]
public string SayHello() {
return "Secret message";
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?