最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
jquery+ajax调用webservice 实例
时间:2022-06-25 05:35:16 编辑:袖梨 来源:一聚教程网
jquery+ajax调用webservice 实例
本文章是利用了asp教程.net的webservice 与jquery 的ajax来做一个 ajax实例
webservic.asmx文件
public class dataservice : system.web.services.webservice {
public dataservice () {
//如果使用设计的组件,请取消注释以下行
//initializecomponent();
}
[webmethod]
public string helloworld() {
return "hello world";
}[webmethod]
public int appenddata(string sdev, string x, string y)
{
string s = string.format("insert into zry_current (zdev,zx,zy) values ('{0}',{1},{2})", sdev, x, y);
return accesshelper.executenonquery(s);
}[webmethod]
public string readdata(string sdev, string dayid)
{
string s = string.format("select zx,zy from zry_current where zdev='{0}' and zday={1}", sdev, dayid);
dataset ds = accesshelper.executedataset(s);
ds.datasetname = "zry_current";
return ds.getxml();
}
}
相关文章
- 死亡搁浅2次要订单No.100 将拆解的步枪送到独行指挥官手上全流程攻略 09-06
- 死亡搁浅2怎么开启照明 闪光灯开启方法 09-06
- 超级忍反攻的斩击怎么下载 完整中文版获取指南 09-06
- 死亡搁浅2怎么使用VR培训室 09-06
- 超级忍反攻的斩击有手机版吗 移动端游玩指南 09-06
- 死亡搁浅2怎么提高波特等级 提高波特等级的方法 09-06