【转自: 小美的部落格

嗯,直接看代码:

CookieContainer cc=new CookieContainer();
string url = “http://mailbeta.263.net/xmweb”;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = “POST”;
request.ContentType = “application/x-www-form-urlencoded”;
request.CookieContainer=cc;
string user=”user”; //用户名
string pass=”pass”; //密码
string data = “func=login&usr=” + HttpUtility.UrlEncode(user) +“&sel_domain=263.net&domain=263.net&pass=” +HttpUtility.UrlEncode(pass) +“&image2.x=0&image2.y=0&verifypcookie=&verifypip=”;
request.ContentLength = data.Length;
StreamWriter writer = new StreamWriter(request.GetRequestStream(),Encoding.ASCII);
writer.Write(data);
writer.Flush();
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
string encoding = response.ContentEncoding;
if (encoding == null || encoding.Length < 1) {
    encoding = "UTF-8"; //默认编码
}
StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding(encoding));
data = reader.ReadToEnd();
Console.WriteLine(data);
response.Close();

int index=data.IndexOf("s,index)-index-4);
Console.WriteLine(sid);

url ="http://wm11.263.net/xmweb?func=mlst&act=show&usr="+user+"&s; //默认编码
}
reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding(encoding));
data = reader.ReadToEnd();
Console.WriteLine(data);
response.Close();

这段代码的意思是,模拟登陆263邮箱,别列出收件箱内容(html代码)

相关文章:

  • 2021-05-23
  • 2021-11-15
  • 2021-09-17
  • 2021-12-26
  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
猜你喜欢
  • 2021-10-29
  • 2021-11-10
  • 2022-12-23
  • 2021-10-10
  • 2022-12-23
  • 2021-07-12
  • 2022-01-12
相关资源
相似解决方案