【求助】js里调用不了ashx里的方法
ashx文件==========================================================================================
<%@ WebHandler Language="C#" Class="GetFrameWork" %>
using System;
using System.Web;
using MyOA.BLL;
using Newtonsoft.Json;
public class GetFrameWork : IHttpHandler {
public void ProcessRequest (HttpContext context) {
string frameWork = JsonConvert.SerializeObject(BranchInfoManager.GetAllBranchInfos());
context.Response.Write(frameWork);
}
public bool IsReusable {
get {
return false;
}
}
}
js文件
==========================================================================================
$(document).ready(function(){
getFrameWork();
});
function getFrameWork(){
$.getJSON("../Controllers/GetFrameWork.ashx",function(data){
if(data!=null){
$("#framework").html("<option value='0'>==请选择==</option>");
$(data).each(function(i){
$("#framework").append("<option value='"+ data[i].Id +"'>"+ data[i].Name +"</option>");
});
}
});
}
不知道为什么就是进不了ashx的方法,求教