using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace MyWebService { /// <summary> /// Service1 的摘要说明 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。 // [System.Web.Script.Services.ScriptService] // 继承 public class Service1 : System.Web.Services.WebService { [WebMethod] // 方法 public string HelloWorld() { return " 您好 世界"; } // must have [WebMethod(Description="求和的方法")] public int JiaFa(int intX, int intY) { return intX+intY; } } }
效果