?? applicationservice.asmx
字號:
<%@ WebService Class="ApplicationService" %>
Imports System
Imports System.Web.Services
<WebService( Namespace:="http://yourdomain.com/webservices" )> _
Public Class ApplicationService : Inherits WebService
<WebMethod()> Public Function GetAppCounter() As Integer
Application( "Counter" ) = CINT( Application( "Counter" ) ) + 1
Return CINT( Application( "Counter" ) )
End Function
End Class
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -