|
本帖最后由 maguan 于 2013-4-21 15:26 编辑
代码就一句话。
获得的HTMl返回值是:远程服务器返回错误: (500) 内部服务器错误。
1.抓包是不会返回这个错误的。而是得到正常的访问的效果和网页源代码。
2.用别的httphelper写的代码是不会得到这个错误的。
而是得到正常的访问的效果和网页源代码。
HttpItem item3 = new HttpItem()
{
URL = "http://www0.ceair.com/muecard/sales/buycard/CardSalesAction.do?method=doCardCountBack",
Referer = "http://www0.ceair.com/muecard/sales/buycard/CardSalesAction.do?method=doCardCountInit",
Encoding=Encoding.UTF8,
Method = "Post",
Postdata ="number=1&acceptterms=on" ,
ContentType = "application/x-www-form-urlencoded",
};
item3.Allowautoredirect = true;
HttpResult page3 = helper.GetHtml(item3);
|
|