有一个经典的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) {}
});
可能是什么问题?任何帮助都是适当的,谢谢你提前