ASP.NET中Ajax怎么使用

决不能习惯失败,因为你要知道,身体的疲惫,不是真正的疲惫;精神上的疲惫,才是真的劳累。

在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使用方法的相关知识,希望对大家有所帮助,如果大家想了解更多内容,敬请关注网站!

本文ASP.NET中Ajax怎么使用到此结束。小树会大,大树会老,老树会凋零。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
ASP.NET轻量级MVC框架Nancy的基本用法

使用grpcui测试ASP.NET core的gRPC服务

ASP.NET Core中的对象池介绍

asp.net中MVC的处理流程详解

ASP.NET Core的日志系统介绍