using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace WebService1 { /// <summary> /// WebService1 的摘要说明 /// </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 WebService1 : System.Web.Services.WebService { //[WebMethod] //public string HelloWorld() //{ // return "Hello World"; //} public class Products { public double GetPrice(int ProID) { return 10; } } [WebMethod(Description="根据产品ID获得产品的价格")] public double GetProductPrice(int ProductId) { Products pros = new Products(); return pros.GetPrice(ProductId); } public static int i = 0; [WebMethod(Description = "计算", EnableSession = true)] public int Count() { i = i + 1; return i; } [WebMethod(EnableSession = true, MessageName = "CountAdd")] public int Count(int da) { i = i + da; return i; } } }
以上是我的程序,但是会报错,错误如下:
就是不支持咯
你起的count方法名一样,有两个count的方法名,webService里不能这样,把方法名换一下就好了