jQuery AJAX 调用 WebService 的实例
程序员文章站
2022-05-28 07:54:45
...
用jQuery调用其他项目的WebService
实现登录验证功能
html输入用户名密码:
代码
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]默认是注释的,要把注释去掉
实现登录验证功能
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]默认是注释的,要把注释去掉
上一篇: Oracle笔记:基本SQL语句
推荐阅读
-
理解jquery ajax中的datatype属性选项值
-
基于Jquery.history解决ajax的前进后退问题
-
Jquery具体实例介绍AJAX何时用,AJAX应该在什么地方用
-
Jquery Ajax请求文件下载操作失败的原因分析及解决办法
-
非常简单的Ajax请求实例附源码
-
jquery1.8版本使用ajax实现微信调用出现的问题分析及解决办法
-
jQuery Ajax 实例详解 ($.ajax、$.post、$.get)
-
JQuery+Ajax+Struts2+Hibernate框架整合实现完整的登录注册
-
jquery中AJAX请求 $.post方法的使用
-
对tensorflow 的模型保存和调用实例讲解