我在我的HtmlAgilityPack
个项目中使用C#
进行抓取。我需要从网页中删除<form>
标记。我已经搜索了如何使用HtmlAgilityPack提取表单标签,但无法找到答案。任何人都可以告诉我如何使用<form>
提取HtmlAgilityPack
代码?
private void Testing()
{
var getHtmlWeb = new HtmlWeb();
var document = getHtmlWeb.Load(@"http://localhost/final_project/index.php");
HtmlNode.ElementsFlags.Remove("form");
var aTags = document.DocumentNode.SelectNodes("//form");
int counter = 1;
StringBuilder buffer = new StringBuilder();
if (aTags != null)
{
foreach (var aTag in aTags)
{
buffer.Append(counter + ". " + aTag.InnerHtml + " - " + "\t" + "<br />");
counter++;
}
}
}
这是我的代码示例。我正在从我的localhost
抓取一页。 aTags
的计数为1,因为页面上只有一个表单。但是当我使用时,我的StringBuilder
对象并不包含任何形式的InnerHtml。哪里是错误:(
以下是我要从中删除{html来源form
<!DOCTYPE html>
<html>
<head>
<!-- stylesheet section -->
<link rel="stylesheet" type="text/css" media="all" href="./_include/style.css">
<!-- title of the page -->
<title>Login</title>
<!-- PHP Section -->
<!-- Creating a connection with database-->
<!-- end of PHP Sectoin -->
</head>
<body>
<!-- now we'll check error variable to print warning -->
<!-- we'll submit the data to the same page to avoid excessive pages -->
<form action="/final_project/index.php" method="post">
<!-- ============================== Fieldset 1 ============================== -->
<fieldset>
<legend>Log in credentials:</legend>
<hr class="hrzntlrow" />
<label for="input-one"><strong>User Name:</strong></label><br />
<input autofocus name="userName" type="text" size="20" id="input-one" class="text" placeholder="User Name" required /><br />
<label for="input-two"><strong>Password:</strong></label><br />
<input name="password" type="password" size="20" id="input-two" class="text" placeholder="Password" required />
</fieldset>
<!-- ============================== Fieldset 1 end ============================== -->
<p><input type="submit" alt="SUBMIT" name="submit" value="SUBMIT" class="submit-text" /></p>
</form>
</body>
</html>
答案 0 :(得分:1)
由于允许表单标签重叠,HAP处理它们的方式不同,将表单标签视为任何其他元素只需通过调用以下方式删除表单标志:
HtmlAgilityPack.HtmlNode.ElementsFlags.Remove("form");
现在您的表单标签将按照您的预期处理,您可以使用其他标签的方式。