我需要从 jQuery 调用处理程序(ashx)文件以在运行时获取一些数据。我的 jQuery 函数如下所示:
var pID = 3;
var tID = 6;
$("#Button1").click(function() {
var urlToHandler = "Controller/TestHandler.ashx";
$.ajax({
type: "POST",
url: urlToHandler,
data: "{'pID':'" + pID + "', 'tID':'" + tID + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
alert(msg);
}
});
});
我的处理程序代码:
<%@ WebHandler Language="C#" Class="TestHandler" %>
using System;
using System.Web;
public class TestHandler : IHttpHandler
{
public void ProcessRequest (HttpContext context)
{
String pID = context.Request.Params["pID"];
String tID = context.Request.Params["tID"];
context.Response.ContentType = "text/plain";
context.Response.Write(pID + " " + tID);
}
public bool IsReusable
{
get {
return false;
}
}
}
问题是代码执行没有到达处理程序代码。我可以从处理程序文件所在的同一目录中的同一 jQuery 函数调用其他 Web 表单 (aspx) 文件。所以这不是任何路径问题。
我是这个处理程序文件概念的新手。我用谷歌搜索了很多,但在我的代码中找不到任何错误。