http://www.pss-system.gov.cn/sip ... teSmartSearch.shtml
代码很简单只需要简单配置就行了
[C#] 纯文本查看 复制代码 HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://www.pss-system.gov.cn/sipopublicsearch/search/smartSearch-executeSmartSearch.shtml",//URL 必需项
Method = "post",//URL 可选项 默认为Get
Postdata = "searchCondition.searchExp=发动机&searchCondition.dbId=VDB&searchCondition.searchType=Sino_foreign&wee.bizlog.modulelevel=0200101",//Post数据 可选项GET时不需要写
ContentType = "application/x-www-form-urlencoded",//返回类型 可选项有默认值
};
HttpResult result = http.GetHtml(item);
string html = result.Html;
string cookie = result.Cookie;
有兴趣的可以看看
|