我查看了 SO 和 google 上的以下和类似链接,以使用 HTMLAgilityPack 解析 aspx 页面
但我不知道如何编写 LINQ 语句,以便在我的 aspx 页面中识别按钮和标签控件名称。
这是我的 aspx 页面。
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="WebApplication1.WebForm4" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button on page4" />
<br />
<br />
<asp:Label ID="Label1" runat="server" Text="Label on page 4"></asp:Label>
<br />
<br />
<asp:Button ID="Button2" runat="server" Text="second button page 4" />
<br />
<asp:Button ID="Button3" runat="server" Text="second button page 4" />
</div>
</form>
</body>
</html>
我想使用 HTML Agility 包编写 LINQ,以便可以列出以下输出:
此页面上的控件为 Button1、Label1、Button2、Button3
我在编写用于解析 aspx 页面的 LINQ 时遇到问题。请帮忙。
这是我到目前为止写的内容,但它不起作用。
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
htmlDoc.OptionFixNestedTags = true;
string filePath = @"C:\WebApplication1\webform4.aspx";
htmlDoc.Load(filePath);
htmlDoc.Load(filePath);
var pagecontrols = from links in htmlDoc.DocumentNode.Descendants("div")
where links.Attributes.Contains("runat")
select links.Attributes["ID"].Value;
foreach (var pagecontrol in pagecontrols)
{
Response.Write(pagecontrol);
}