mirror of
https://e.coding.net/circlecloud/SEOKeywordSearch.git
synced 2024-11-23 02:18:48 +00:00
修复HttpHelper...
This commit is contained in:
parent
5858a6323b
commit
2bc2488a9f
@ -106,15 +106,15 @@ namespace SEOKeywordSearch
|
||||
this.ResultView.Rows[index].Cells[s.ToString() + "r"].Value = "查询第" + i + "页...";
|
||||
Application.DoEvents();
|
||||
httpHelper.Send(HttpMethod.GET, url);
|
||||
while (HttpHelper.readyState != HttpReadyState.完成)
|
||||
while (httpHelper.readyState != HttpReadyState.完成)
|
||||
{
|
||||
Application.DoEvents();
|
||||
}
|
||||
string htmldoc = HttpHelper.responseBody;
|
||||
string htmldoc = httpHelper.responseBody;
|
||||
if (string.IsNullOrEmpty(htmldoc))
|
||||
{
|
||||
state.ForeColor = Color.Red;
|
||||
state.Text = "关键词 " + key + " 在 " + s.ToString() + " 第 " + i + " 页 网页抓取失败 错误:" + HttpHelper.ErrMsg;
|
||||
state.Text = "关键词 " + key + " 在 " + s.ToString() + " 第 " + i + " 页 网页抓取失败 错误:" + httpHelper.ErrMsg;
|
||||
this.ResultView.Rows[index].Cells[s.ToString() + "r"].Style.ForeColor = Color.Red;
|
||||
maybe = true;
|
||||
continue;
|
||||
|
@ -42,13 +42,13 @@ namespace CityCraft
|
||||
}
|
||||
public class HttpHelper
|
||||
{
|
||||
public static HttpReadyState readyState = HttpReadyState.未初始化;
|
||||
public static int Status = 0;
|
||||
public static string responseBody = "";
|
||||
public static string responseText = "";
|
||||
public static byte[] responseByte = null;
|
||||
public static HttpArgs args = new HttpArgs();
|
||||
public static string ErrMsg = string.Empty;
|
||||
public HttpReadyState readyState = HttpReadyState.未初始化;
|
||||
public int Status = 0;
|
||||
public string responseBody = "";
|
||||
public string responseText = "";
|
||||
public byte[] responseByte = null;
|
||||
public HttpArgs args = new HttpArgs();
|
||||
public string ErrMsg = string.Empty;
|
||||
/// <summary>
|
||||
/// 提交方法
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user