日期:2014-05-17 浏览次数:20876 次
string A = "这是第一个帖子";
string B = "这是帖子的内容";
string post = string.Format("agicname=&magicid=&verify=87188a1f&cyid=0&ajax=1&iscontinue=0&atc_title={0}&usernames=&atc_tags=&atc_money=0&atc_rvrc=0&replyrewardcredit=money&replyreward[replyrewardnum]=&replyreward[replyrewardtimes]=&replyreward[replyrewardreptimes]=1&replyreward[replyrewardchance]=10&atc_usesign=1&atc_autourl=1&atc_convert=1&step=2&=&pid=&action=new&fid=42&tid=0&article=0&special=0&_hexie=7b87286f&atc_content={1}", A, B);//atc_content={1}在抓包中没有抓到这个选项,自己通过HTML代码后发现这个是提交的帖子内容,自己手工加上去的。
Http.PostHtml("http://bbs.XXX.com/post.php?fid=42#breadCrumb", post, ref cookie, Encoding.GetEncoding("gb2312"));//附加上登陆时的cookie,提交到这个http://bbs.XXX.com/post.php?fid=42#breadCrumb页面。