jquery 访问.ashx 取值
$.ajax({
type: "POST",
url: "ajaxUpFile.ashx",//这是访问的。ashx文件
data:{ upfile: $("#" + obfile_id).val()},
.ashx 中用
string teststr = context.Request.Form["upfile"]; //upfile为参数名