<%@ WebService Language="C#" Class="Util" %>
using System;
using System.Web.Services;
public class Util: WebService
{
[WebMethod]
public int CalculatorAdd(int operandA, int operandB)
{
return operandA + operandB;
}
[WebMethod]
...