webservice 只能定义一个函数吗?# DotNet - 窗口里的风景B*a2013-05-27 07:051 楼unlimited supply, 怎么用捏? 倒土里就成了? 倒多少? 越多越好?还是太多也会有坏处? 有经验的谈谈?
S*e2013-05-27 07:052 楼在asmx文件里的webmethod定义两个函数第一个函数f1没问题第二个函数f2怎么也不工作当把第一个f1删掉,f2就工作了请问怎么回事代码简要如下namespace Samples.AspNet{[WebService(Namespace = "http://tempuri.org/")][WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)][ScriptService]public class ServerTime : System.Web.Services.WebService{[WebMethod]public string f1(string productID ){。。。 }public string f2(string productID ){。。。}
v*n2013-05-27 07:054 楼第二个没有[WebMethod]?【在 S****e 的大作中提到】: 在asmx文件里的webmethod: 定义两个函数: 第一个函数f1没问题: 第二个函数f2怎么也不工作: 当把第一个f1删掉,f2就工作了: 请问怎么回事: 代码简要如下: namespace Samples.AspNet: {: [WebService(Namespace = "http://tempuri.org/")]