⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mathservice.asmx

📁 ASP_NET程序设计教程 源代码 冶金工业出版社 肖金秀 冯沃辉 陈少涌
💻 ASMX
字号:
<%@ WebService Language="VB" Class="MathService" %>

Imports System
Imports System.Web.Services

Public Class MathService : Inherits WebService

   <WebMethod()> Public Function Add(A As System.Single, B As System.Single) As System.Single

       Return A + B
   End Function

   <WebMethod()> Public Function Subtract(A As System.Single, B As System.Single) As System.Single

       Return A - B
   End Function

   <WebMethod()> Public Function Multiply(A As System.Single, B As System.Single) As System.Single

       Return A * B
   End Function

   <WebMethod()> Public Function Divide(A As System.Single, B As System.Single) As System.Single

       If B = 0
          Return -1
       End If
       Return Convert.ToSingle(A / B)
   End Function

End Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -