|
1金钱
换其他网址的也都没有登录成功。在本站测试(帐号密码都是正确的)也没有成功~,请赐教!
HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://www.sufeinet.com",//URL 必需项
Method = "POST",//URL 可选项 默认为Get
Timeout = 100000,//连接超时时间 可选项默认为100000
ReadWriteTimeout = 30000,//写入Post数据超时时间 可选项默认为30000
IsToLower = false,//得到的HTML代码是否转成小写 可选项默认转小写
Cookie = "",//字符串Cookie 可选项
UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0",//用户的浏览器类型,版本,操作系统 可选项有默认值
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "text/html",//返回类型 可选项有默认值
Referer = "http://www.sufeinet.com",//来源URL 可选项
//Allowautoredirect = true,//是否根据301跳转 可选项
//CerPath = "d:\123.cer",//证书绝对路径 可选项不需要证书时可以不写这个参数
//Connectionlimit = 1024,//最大连接数 可选项 默认为1024
Postdata = "user=21341234&pwd=123456",//Post数据 可选项GET时不需要写
};
HttpResult result = http.GetHtml(item);
string html = result.Html;
string cookie = result.Cookie;
byte[] b = result.ResultByte;
Console.WriteLine(html);
string filePath1 = "d:\\loginsucess.txt";//这里是你的已知文件
FileStream fs1 = new FileStream(filePath1, FileMode.OpenOrCreate, FileAccess.ReadWrite);
StreamWriter sw1 = new StreamWriter(fs1);
fs1.SetLength(0);
sw1.Write(html);
sw1.Close();
|
最佳答案
查看完整内容
这写的也忒简单了啊。登录苏飞论坛 地址也不对啊。账户密码也不是明文啊。模拟HTTP协议首先要收到操作一次,看一下浏览器都发了哪些请求然后自己在去模拟。
|