Ajax Call从Asp返回403

时间:2015-06-22 09:02:14

标签: jquery asp.net ajax iis-7 http-status-code-403

有一个经典的Asp网站,我们开发了一个处理程序,它将成为网站和Web服务之间的桥梁。但我得到的只是403(Forbidden)错误。这是我的Ajax:

$.ajax({
    url: 'test.ashx',
    type: 'POST',
    data: {
        'email': 'test@test.com',
        'name': 'test',
        'surname': 'test',
        'gsm': 'test',
        'GSM_PERMIT': 'L',
        'CALL_PERMIT': 'L',
        'EMAIL_PERMIT': 'L',
        'selectedaccounts': 'testa, testb'
    },
    dataType: 'json',
    success: function(data) {}
});

可能是什么问题?任何帮助都是适当的,谢谢你提前

0 个答案:

没有答案