我在http://www.mywebsite.com/hello.aspx页面中使用这样的帖子:
$.post("handler.ashx", {}, function (x) { alert(x); });
如何检查处理程序运行的地址?
public void ProcessRequest (HttpContext context)
{
// check if request is from http://mywebsite/hello.aspx
context.Response.ContentType = "text/plain";
context.Response.Write("test");
}
或者...如何禁用来自不同域的请求处理程序?