首页 > 后端开发 > php教程 > jQuery AJAX 调用 WebService 的实例_PHP教程

jQuery AJAX 调用 WebService 的实例_PHP教程

WBOY
发布: 2016-07-21 14:54:41
原创
1023 人浏览过

用jQuery调用其他项目的WebService

实现登录验证功能

html输入用户名密码:

代码















Login ID:



Login Password:








Jquery引用和登录事件

代码



serviceURL类似:var serviceURL = "http://localhost:1742/SoldierServices.asmx";

WebService代码:

代码
///
/// Summary description for SoldierServices
///

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class SoldierServices : System.Web.Services.WebService
{

[WebMethod]
public User UserLogin(string UserLoginID, string UserLoginPW)
{
LoginBusiness lb = new LoginBusiness();
return lb.UserLogin(UserLoginID, UserLoginPW);
}

[WebMethod]
public User GetUserInfo(string UserID)
{
LoginBusiness lb = new LoginBusiness();
return lb.GetUserInfo(UserID);
}
}

注意:[System.Web.Script.Services.ScriptService]默认是注释的,要把注释去掉

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/364545.htmlTechArticle用jQuery调用其他项目的WebService 实现登录验证功能 html输入用户名密码: 代码 table style=width: 400px tr td style=width: 200px class=left Login ID: /td td s...
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板