WebForm 页面ajax 请求后台页面 方法
程序员文章站
2023-03-28 08:35:05
这是前端code 这是xxx.aspx 页面内的方法 ......
function returnoperation(inventoryid) {
//入库 接口
if (confirm('你确认?')) {
$.ajax({
type: "post",
url: "xxx.aspx/instorage",
data: "{inventoryid:'"+inventoryid+"'}",//注意,json 对象外面 加 双引号
contenttype: "application/json",
datatype: "json",
success: function (r) {
if (r.d =="1") {
alert("入库成功");
} else {
alert("入库失败");
}
},
error: function (e) {
alert("错误是:" + e.responsetext);
}
})
} else {
}
}
这是前端code
[webmethod] //注意添加引用,方法为静态 public static string instorage(string inventoryid) { return inventoryid; }
这是xxx.aspx 页面内的方法
上一篇: MySQL常用的数据类型介绍
下一篇: 就算生活放你一马又怎样