前端代码
function examine(t)
{
$.ajax({
type: 'post',
url: 'Ashx/Examine.ashx?id=' + t,
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.status + "----" + XMLHttpRequest.readyState + "----" + textStatus);
},
success: function (result) {
alert(result);
}
});
location.reload();
}
后台ashx
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
if(context.Request.QueryString["id"]==null)
{
context.Response.Clear();
context.Response.Write("参数错误");
context.Response.End();
}
else
{
string id = context.Request.QueryString["id"];
if(SqlHelper.UserInfo.Examine(Convert.ToInt32(id)))
{
context.Response.Clear();
context.Response.Write("审核通过");
context.Response.End();
}
else
{
context.Response.Clear();
context.Response.Write("审核失败");
context.Response.End();
}
}
}
ashx代码已执行,就是会返回error
另外用firebug断点调试的时候有时候可以
- 9 回答
- 0 关注
- 871 浏览
添加回答
举报
0/150
提交
取消