|
各位使用httphelp的时候,有没有出现重复post的问题啊
比如一段这个代码
item = new HttpItem()
{
URL = myweb + "/L_Confirm_Jeu.aspx",
Method = "Post",
Postdata = "UVID=" + bl.userid_com + "&JeuValidate=" + jeu + "&uPI_ID=" + str_touzhu_id + "&uPI_P=" + str_touzhu_peilv + "&uPI_M=" + str_touzhu_money,
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统 可选项有默认值
ContentType = "application/x-www-form-urlencoded",//返回类型 可选项有默认值
Cookie = myck,
};
result = http.GetHtml(item);
html = result.Html;
网页返回,有时候记录提交了2次,提交的间隔是3秒
这是什么问题呀,求助
|
|