首页 > 编程 > .NET > 正文

ASP.NET中Ajax怎么使用

2024-07-10 13:31:04
字体:
来源:转载
供稿:网友

在ASP.NET中应用Ajax的格式如下:

前台代码(用JQuery库)

$.ajax({  type: "POST",  async: true,  url: "../Ajax/ajax.ashx",  dataType: "html",  data: null  success: function (result)   {  //do successful sth  },  error: function (XMLHttpRequest, textStaus, errThrown)   {  //do error sth  }})

Ajax(一般性处理程序)中代码如下:

public void ProcessRequest (HttpContext context) {context.Response.ContentType = "text/plain";string result = "Hello World";context.Response.Write(result);}

以上所述是小编给大家介绍的ASP.NET中Ajax使用方法的相关知识,希望对大家有所帮助,如果大家想了解更多内容,敬请关注VeVb武林网网站!


注:相关教程知识阅读请移步到ASP.NET教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表