标签:style blog http color ar 使用 for sp 文件
建立空ASP.NET应用程序,添加asmx文件。代码示例:
/// <summary> /// info 的摘要说明 /// </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 info : System.Web.Services.WebService { [WebMethod] public DataTable Getinfo(string p) { return Getinfo(p); }
客户端异步调用WebService,配置服务引用,如图:
勾选生成异步操作
标签:style blog http color ar 使用 for sp 文件
原文地址:http://www.cnblogs.com/bmbh/p/4030203.html