helloworld.asmx
来自「This is a book about vb.you could learn 」· ASMX 代码 · 共 12 行
ASMX
12 行
<%@ WebService Language="VB" Class="HelloWorld" %>
Imports System.Web.Services
Public Class HelloWorld
<WebMethod, EncryptionExtension(Encrypt:=EncryptMode.None)> _
Public Function SayHello() As String
Return "Secret message"
End Function
End Class
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?