更新从asp.net C#运行php文件

时间:2014-03-08 07:35:51

标签: c# javascript jquery asp.net

在我的项目中,我想调用php文件。但它显示错误“405方法不允许”。 请帮帮我!!!

 $.ajax({
    type: "POST",
    contentType: "application/json; charset=utf-8",
    url: "/index.php",
    data: "{}",
    dataType: "json",
    success: function (data) {
        alert("success");
    },
    error: function (result) {
        alert("Error");
    }
});

1 个答案:

答案 0 :(得分:0)

尝试使用GET方法而不是POST。