- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
发表于 2013-1-16 18:58:43
|
显示全部楼层
[code=csharp]HttpHelper objhttp = new HttpHelper();
//参数对象
HttpItem objHttpItem = new HttpItem()
{
URL = "http://www.sufeinet.com",
Encoding = "gb2312",
Method = "GET",
};
//取Html
string text = objhttp.GetHtml(objHttpItem);
//参数对象
objHttpItem = new HttpItem()
{
URL = "http://www.sufeinet.com",
Postdata = "username=sufei&userpwd=123456",
Encoding = "gb2312",
Method = "POST",
Referer = "",
Cookie = objHttpItem.Cookie,
IsToLower = false//是否转成小写
};
//取Html
string html = objhttp.GetHtml(objHttpItem);[/code] |
|