Уважаемые,
У меня проблема с моим кодом.Я хочу выбрать 2 xpath из файла HTML.
1-й xpath: / html / body / center [2] / table / tbody / tr [2] / td [1] / a [2] / fontНиже HTML-код.Я хочу, чтобы имя "BFhostname"
<font size="+1" face="Tahoma, Arial, Helvetica" color="#ffffcc">BFhostname /font>
2-й xpath: // html / body / center [2] / table / tbody / tr [2] / td [10] / a / img Deatilsкод html: img title="disk:red:9d13h24m" alt="disk:red:9d13h24m" src="red%20%20Xymon%20-%20Status%20@%20Thu%20Jan%2003%20172037%202019_pliki/red.gif" width="16" height="16" border="0"
Во втором случае я хочу получить только эту информацию: alt = "диск: красный: 9d13h24m"
<i>Hide Expand Copy Code
namespace EvenetViewer
{
public partial class Form1 : Form
{
DataTable table;
public Form1()
{
InitializeComponent();
InitTable();
}
public class nameandalert
{
public string Host { get; set; }
public string Alert { get; set; }
}
private void InitTable()
{
table = new DataTable("EventViewer");
table.Columns.Add("Host", typeof(String));
table.Columns.Add("Alert", typeof(String));
table.Columns.Add("Time", typeof(String));
EventviewBB.DataSource = table;
}
private void Form1_Load(object sender, EventArgs e)
{
//InitTable();
WebClient webClient = new WebClient();
string page = webClient.DownloadString(@"C:\temp\test3.htm");
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(page);
richTextBox1.Text = page;
var namenodes = doc.DocumentNode.SelectNodes("//table[@border='0']/tbody/tr[2]/td[1]/a[2]");
var host = namenodes.Select(node => node.InnerText);
table.Rows.Add(host)
var alertnodes = doc.DocumentNode.SelectNodes("//table[@cellpadding=2]/tbody/tr[2]/td[10]/a/");
var alert = alertnodes.Select(node => node.InnerText);
table.Rows.Add(Alert);
}
}
}