ASP.NET技巧:請(qǐng)求網(wǎng)址并解析返回的html
目的,把遠(yuǎn)程服務(wù)器傳回的Html,解析到類里面,為GridView等提供數(shù)據(jù)源
1 、向遠(yuǎn)程服務(wù)器Post數(shù)據(jù)
public int PostData(string url, string data, out string info)
{
info = "";
CookieContainer cc = new CookieContainer();
HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
request.CookieContainer = cc;
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
Stream requestStream = request.GetRequestStream();
byte[] byteArray = Encoding.UTF8.GetBytes(data);
requestStream.Write(byteArray, 0, byteArray.Length);
requestStream.Close();
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
Uri responseUri = response.ResponseUri;
Stream receiveStream = response.GetResponseStream();
Encoding encode = System.Text.Encoding.GetEncoding("utf-8");
StreamReader readStream = new StreamReader(receiveStream, encode);
string result = readStream.ReadToEnd();
info = result;
return 0;
}
2、解析返回的html,有省略
public ClassInfo[] GetClass(string html)
{
ArrayList ar = new ArrayList();
ArrayList arr = new ArrayList();
string table = "";
Regex regtable = new Regex(@"(?<=<table.*>).*?(?=</table>)", RegexOptions.Singleline);
Match ma = regtable.Match(html);
while (ma.Success)
{
if (ma.Value.Trim() != "")
{
arr.Add(HttpUtility.HtmlDecode(ma.Value));
}
ma = ma.NextMatch();
}
for (int i = 0; i < arr.Count; i++)
{
table = arr[i].ToString() + table;
}
Regex reg = new Regex(@"(?<=<.*?>).*?(?=<.*?>)", RegexOptions.Singleline);
Match m = reg.Match(table);
while (m.Success)
{
if (m.Value.Trim() != "")
{
ar.Add(HttpUtility.HtmlDecode(m.Value));
}
m = m.NextMatch();
}
ClassInfo[] ci = new ClassInfo[classno];
for (int i = 0; i < classno; i++)
{
ci[i] = new ClassInfo();
ci[i].RegisterDate = (ar[i * 8 + 0]).ToString();
ci[i].LoginDate = (ar[i * 8 + 1]).ToString();
ci[i].LogoutDate = (ar[i * 8 + 2]).ToString();
ci[i].UseMin = ar[i * 8 + 3].ToString();
ci[i].ClassName = ar[i * 8 + 5].ToString();
ci[i].ClassType = ar[i * 8 + 6].ToString();
ci[i].Percent = ar[i * 8 + 7].ToString();
}
return ci;
}
3、定義ClassInfo類(課程類),用CodeSmith生成
public class ClassInfo
{
Member Variables#region Member Variables
protected string _loginDate;
protected string _logoutDate;
protected string _registerDate;
protected string _useMin;
protected string _className;
protected string _classType;
protected string _percent;
//protected string _nouse;
#endregion
Constructors#region Constructors
public ClassInfo() { }
public ClassInfo(string loginDate, string logoutDate, string registerDate, string useMin, string className, string classType, string percent)
{
this._loginDate = loginDate;
this._logoutDate = logoutDate;
this._registerDate = registerDate;
this._useMin = useMin;
this._className = className;
this._classType = classType;
this._percent = percent;
}
#endregion
Public Properties#region Public Properties
// public string NoUse
// {
// get{return _nouse;}
// set{ _nouse= value;}
// }
public string LoginDate
{
get { return _loginDate; }
set { _loginDate = value; }
}
public string LogoutDate
{
get { return _logoutDate; }
set { _logoutDate = value; }
}
public string RegisterDate
{
get { return _registerDate; }
set { _registerDate = value; }
}
public string UseMin
{
get { return _useMin; }
set { _useMin = value; }
}
public string ClassName
{
get { return _className; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for ClassName", value, value.ToString());
_className = value;
}
}
public string ClassType
{
get { return _classType; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for ClassType", value, value.ToString());
_classType = value;
}
}
public string Percent
{
get { return _percent; }
set
{
if (value != null && value.Length > 50)
throw new ArgumentOutOfRangeException("Invalid value for Percent", value, value.ToString());
_percent = value;
}
}
#endregion
}
- ASP.NET技巧:教你制做Web實(shí)時(shí)進(jìn)度條
- ASP.NET技巧:數(shù)據(jù)島出到Excel最為簡(jiǎn)易的方法
- ASP.NET技巧:做個(gè)DataList可分頁的數(shù)據(jù)源
- 調(diào)試ASP.NET應(yīng)用程序的方法和技巧
- ASP.NET技巧:為Blog打造個(gè)性日歷
- 幾個(gè)ASP.NET技巧
- ASP.NET編程中的十大技巧
- ASP.NET 2.0 URL映射技巧
- asp.net下GDI+的一些常用應(yīng)用(水印,文字,圓角處理)技巧
- ASP.NET User Control使用技巧一則
- ASP.NET 2.0 URL映射技巧
- 幾個(gè) ASP.NET 小技巧
- ASP.NET 小技巧(2個(gè))
- asp.net 開發(fā)的一些常用技巧
- asp.net項(xiàng)目開發(fā)中用到的小技巧
- ASP.net Textbox的技巧使用
- ASP.NET 后臺(tái)登錄小技巧介紹
- Asp.Net性能優(yōu)化技巧匯總
- ASP.NET常用小技巧
相關(guān)文章
.Net Core中使用ExceptionFilter過濾器的方法
這篇文章主要介紹了.Net Core中使用ExceptionFilter過濾器的方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-03-03IIS故障(Connections_Refused)問題分析及處理
這幾天某地市Web服務(wù)器連續(xù)多次出現(xiàn)故障問題(Connections_Refused),正好借這個(gè)案例向大家詳細(xì)介紹下,需要了解的朋友可以參考下2012-12-12asp.net中Null在從數(shù)據(jù)庫讀取的時(shí)候的一點(diǎn)點(diǎn)小技巧
我們先看下面的一段代碼,這段代碼其實(shí)很平常,也是我們平時(shí)做項(xiàng)目很常用的一段2012-04-04asp.net使用原生控件實(shí)現(xiàn)自定義列導(dǎo)出功能的方法
這篇文章主要給大家介紹了關(guān)于asp.net使用原生控件實(shí)現(xiàn)自定義列導(dǎo)出功能的相關(guān)資料,文中通過實(shí)例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2022-01-01js獲取Treeview選中的節(jié)點(diǎn)(C#選中CheckBox項(xiàng))
方法網(wǎng)上有很多,試了一下都有瑕疵,于是設(shè)置斷點(diǎn)調(diào)試,各個(gè)屬性查找有用的字段,終于找到,接下來與大家分享解決方法,需要了解的朋友可以參考下2012-12-12asp.net 在客戶端顯示服務(wù)器端任務(wù)處理進(jìn)度條的探討
由于 HTTP 協(xié)議本身的無狀態(tài)性,B/S結(jié)構(gòu)的程序無法像C/S程序那樣,實(shí)時(shí)顯示程序處理的進(jìn)度。搜索一下網(wǎng)上,一般都是采用靜態(tài)變量保存程序執(zhí)行進(jìn)度的方法實(shí)現(xiàn),但是,這種方法是完全錯(cuò)誤的,在并發(fā)的情況下,多個(gè)用戶訪問一個(gè)程序,會(huì)造成混亂。2009-09-09