ajax请求aspx.cs后台方法
Posted 寻找薛定谔的猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax请求aspx.cs后台方法相关的知识,希望对你有一定的参考价值。
前台jquery代码
$(function () { $("#btnfix").click(function () { $.ajax({ type: "post", url: "fix.aspx/test", contentType: "application/json; charset=utf-8", dataType: "json", success: function (data) { console.log(data.d); }, error: function (err) { alert(err); } }); }); });
后台代码
using System.Web.Services; //引用Web.Services命名空间 public partial class Fix : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } [WebMethod] //添加Attribute public static string test() //方法设为静态 { return "hello world"; } }
运行结果
以上是关于ajax请求aspx.cs后台方法的主要内容,如果未能解决你的问题,请参考以下文章
WebForm.aspx 页面通过 AJAX 访问WebForm.aspx.cs类中的方法,获取数据(转)
用juery的ajax方法调用aspx.cs页面中的webmethod方法示例
使用 jquery ajax 在 aspx.cs 文件中调用 web 方法