修复HttpHelper...

master
j502647092 2015-07-30 20:46:51 +08:00
parent 5858a6323b
commit 2bc2488a9f
2 changed files with 10 additions and 10 deletions

View File

@ -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;

View File

@ -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>