HTML Agility Pack is an open-source HTML parser that builds a read/write DOM and supports Linq, plain XPATH or XSLT.
1
vote
1answer
65 views
Reading html from online website C#
I am reading websites in C# and get contents as string....there are some sites which do not have well formed html structure.
I tried HtmlAgilityPack and some others but they need well formed html ...
0
votes
2answers
21 views
Html Agility Pack: Get an HTML document from an Internet resource and saves it to the specified file
I am trying to get the html page from this link and store the content into a specific file in C# using the HAP Class library. I amusing the Get method of the HtmlWeb class. It compiles and runs ...
2
votes
2answers
28 views
How to Put OR condition in Xpath using Html AGility Pack
I have a question about HTML Agility PAck
I want to get the node collection whose Div's isPublished property is either "False" or "false".
How can I add the OR condition in XPATH.
Below is my code, ...
1
vote
3answers
35 views
HtmlAgilityPack Issue in reading html
I am reading websites in C# and get contents as string....there are some sites which do not have well formed html structure.
I am using HtmlAgilityPack which give me issue in that case.
Can you ...
0
votes
1answer
32 views
HtmlAgilityPack query returning no value
Been struggling for 2 days.
I'm using C# and HtmlAgilityPack within a .NET 4.5 winforms project to extract data from a website (the field I want to extract is $ flow and B/S ratio).
I get to the ...
0
votes
1answer
43 views
How to download content of an element by its hierarchy
I'm new to stackoverflow and I hope my question not be odd..
I want to just download the text inside svalue of sindex element, and also content of another <p> tag. This is its hierarchy:
...
0
votes
0answers
43 views
Character encoding is not working with UTF8
I am writing a web scraper, which downloads and processes html from a web site.After downloading content of the site, everything is stored in a Database. Then I get data from the database to display ...
0
votes
1answer
17 views
Metro App HtmlAgilityPack construct well formatted Html
I have a Metro App that formats html from various sources and as such there isn't any consistency in the html structure. Fortunately, there's an HtmlAgilityPack build for Metro Apps which I think can ...
0
votes
2answers
26 views
Xpath with htmlagilitypack
I am try to select the "string b" text node using XPath with the HtmlAgilliyPack.
<div>
string a<br/>
string b<br/>
string c<br/>
</div>
I am not sure how to ...
0
votes
0answers
49 views
HtmlAgilityPack parseError issue
I am using HtmlAgilityPack in C#.I have this code
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
htmlDoc.OptionFixNestedTags = true;
htmlDoc.LoadHtml(s);
if ...
0
votes
0answers
29 views
HTML Agility Pack: DocumentNode.Descendants() returns null values
I am using HTML Agility Pack to scrape websites for my Windows Store app. The version for Windows 8 store apps does not support XPath nor does it have a selectNodes function, but it does support ...
0
votes
2answers
34 views
Separate LI's by child element
i have the following code:
HtmlAgilityPack.HtmlNodeCollection nodeCollection = bodyNode.SelectNodes("//ul[@class='myClass']//li");
which grabs about 250 LI's
the UL format is a bit weird and it ...
0
votes
2answers
66 views
Looping the table in c# given all the values..?
I've table like this
<table>
<tbody>
<tr>
<td>Header1</td>
<td>Header2</td>
<td>Header3</td>
...
0
votes
1answer
53 views
Parse html-page with knockout model
I trying to parse html-page with html agility pack, and I want to get some value from element, but this value setted in knockout model.
//...
function jsCycle(cycleid /* another variables */) {
...
3
votes
2answers
39 views
selecting Node does not work using HtmlAgilityPack
I am using VS2010 and using HTMLAGilityPack1.4.6 (from Net40-folder).
Following is my HTML
<html>
<body>
<div id="header">
<h2 id="hd1">
Patient Name
</h2>
...
0
votes
2answers
37 views
Appending a string to HTML using htmlagiity pack
I am using HtmlAgilityPack in C#.
I loaded my html with
htmlDoc.LoadHtml(model.Content);
Now, I am generating a string like so:
"<div> abc</div><div>xyz</div>"
I want to ...
1
vote
2answers
47 views
C# HTML Agility Pack Single Select Node returning null
I have a web scraper developed using C#, windows forms and the HTML Agility Pack.
I had it all working great when the site changed it's code and broke it. I know it happens often with web scrapers ...
0
votes
0answers
41 views
HtmlAgilityPack not looping through collection
I have a webpage with a collection of div's with the class "messages". I am trying to loop through them and put them into a CSV file, however I cant get the collection to loop properly. Here is the ...
0
votes
1answer
27 views
Exceptions using htmlagilitypack
i am working with html-agility-pack in vb.net and facing a problem. my project was working fine 2 days ago, but now it is generating some kind of exceptions . i am wondering that what is happening . ...
0
votes
1answer
54 views
HtmlAgilityPack if div exists
I am using Html Agility Pack to see if divs with a specific class and id exist.
string target = "http://192.168.3.230/index.htm";
WebClient client = new WebClient();
string html = ...
3
votes
3answers
92 views
How to count rows in a table in an html file C#
When there is a compound table inside an html file how can one count the rows of the parent table.
What I mean by a compound table; a table in which other tables are contained within some of its ...
0
votes
1answer
44 views
HTML to RichTextBox as Plaintext with Hyperlinks
Reading so much about not using RegExes for stripping HTML, I am wondering about how to get some Links into my RichTextBox without getting all the messy html that is also in the content that i ...
0
votes
2answers
42 views
How can XPath be used to dig through (someone else's) poorly coded HTML?
When I execute this C# code...
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using ...
0
votes
1answer
28 views
HTMLagilitypack is not removing all html tags How can I solve this efficiently?
I am using following method to strip all html from the string:
public static string StripHtmlTags(string html)
{
if (String.IsNullOrEmpty(html)) return "";
...
0
votes
0answers
42 views
Retrieve information from a website - Html-agility-pack
I have an assignment in school that building a website that take the flight information from an airline website.
I chose this website: http://book.jetstar.com/Search.aspx
What I have to do is search ...
-2
votes
2answers
56 views
How to read html source from a HTTPS url [closed]
i am trying to read the html source code of a https url in c# with the following code:
WebClient webClient = new WebClient();
string htmlString = w.DownloadString("https://www.targetUrl.com");
...
1
vote
0answers
48 views
c# html agility pack skips over character
I am using htmlAgilityPack with c# to read the contents of a html file.
There are lines of text within this file that look like that:
<td>info info info info info info info info info ...
0
votes
1answer
28 views
Getting links from table via HtmlAgilityPack
I have simple html table:
<table>
<tr>
<td>
<a href="http://someurl_1.com">item name1</a>
</td>
<td>
Value 1
</td>
...
0
votes
0answers
19 views
Error while exporting another project on my solution
I've included this project -> HAPPhone7.1 to use this features on my main project, but when I build the project it show me this error:
"Error 1 The command "del /f /q "C:..\documents\visual studio
...
-4
votes
2answers
81 views
simple Linq statement
i have a list with a string of tr (html table row), each tr has 3 td.
I'm using HtmlAgilityPack to filter out the data from a web page.
var data= from tr in content.ChildNodes.Where(c ...
0
votes
1answer
65 views
How to get title, description from html agility?
I want to get title, description from web. I use
var title= (from item in doc.DocumentNode.SelectNodes(
"//div[@class='section sectionMain recentNews']//a[@class='newsTitle']")
select ...
0
votes
3answers
50 views
What is the best way with dealing with internal links while scraping
I'm building a web scraper in C# and getting all links on a page by doing the following:
foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//a[@href]"))
}
This is being ran on the Internet ...
-3
votes
1answer
59 views
Parsing Pirate Bay using HTMLAgilityPack [closed]
I want to know how can I parse this respective website http://thepiratebay.sx/ using HTMLAgilityPack in C# and XPath?
HtmlDocument doc = new HtmlDocument();
doc.Load("http://thepiratebay.sx/");
...
1
vote
1answer
72 views
How to sum decimal value from a column in a table in html file for C#
This code intends to sum a column of decimal values but throws an exception at the int.Parse() line. Please see near the end of this post for how I tried revise the code to correct this and the error ...
0
votes
1answer
60 views
How to specify the second table in an html file for C#
I need to get the sum of the 4th row of the second table.
I want to sum beginning with the second column.
How do I do this?
static void Main()
{
String htmlFile = ...
0
votes
0answers
82 views
Scrape Javascript from an HTML page using C# .NET
I have Website, which i need to scrap using C# HTML Agility Pack.
On the source code, i need the Array of URL's which is a Javascript Array. Please tell me how can i get this Array in Python
And the ...
0
votes
3answers
40 views
issue in Html parsing in C#
I am using HTMLAGility Pack to parse HTML file as I want to access attributes of DIVS in HTML.
Following my code
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
...
0
votes
3answers
63 views
c# htmlagilitypack parse first link from div with class?
I am trying to parse the first link in the html code below /search?id=3
<div class="brs_col">
<p>
<a href="/search?id=3">
<b>
vastu shastra
...
0
votes
1answer
48 views
c# htmlagilitypack xpath select all except with certain class
I am trying to select all li tags on a page that do not have the class="r"
What i have so far is:
.//li
This is what ive tried so far
//li[not([@class='r'])]
With that i get the error:
...
0
votes
1answer
38 views
How to use Html Agility Pack for HTML validations
I am using HTML Agility Pack for validating my html. Below is what I am using,
public class MarkupErrors
{
public string ErrorCode { get; set; }
public string ErrorReason { get; set; }
}
...
0
votes
1answer
75 views
C# encoding Shift-JIS vs. utf8 html agility pack
i have a problem. My goal is to save some Text from a (Japanese Shift-JS encoded)html into a utf8 encoded text file.
But i don't really know how to encode the text.. The HtmlNode object is encoded in ...
0
votes
1answer
93 views
HTML parsing with HtmlAgilityPack in Windows Store App
i'm parsing HTML code to get Image Link in a "Windows Store Application"
i'm Using Html Agility Pack !
Here The Code :
async void LoidContent()
{
foreach (var feedItem in ...
0
votes
1answer
34 views
Searching inside HtmlNode using Xpath '//'
I am parsing Web page using HTML agility pack where i traverse down to each required childnode
Here's how i am doing
HtmlDocument doc = web.Load("http://example.com");
HtmlNode list = ...
0
votes
2answers
60 views
Split text by Xpath.C# HtmlAgilityPack
I have a HtmlNode with InnerHtml:
<a>SomeText</a>
DividerText:
<br>
TextToSelect1
<br/>
TextToSelect2
<br/>
TextToSelect3
<br>
TextToSelect4
It is possible to ...
0
votes
1answer
34 views
How to loop on rows HtmlAgilityPack
I have been scrapping for a long time now just started learning HtmlAgilityPack.
I am not sure how to loop through items as it brings back the same item each time.
Code:
HtmlNodeCollection ...
3
votes
1answer
62 views
Determine main article image - HTML Agility Pack
I would like to use HTML Agility Pack to determine the main article body and then extract the main article image from it.
I have noticed that most of the site webmasters have their main content ...
1
vote
1answer
29 views
How to extract description if meta tag does't exist?
Many webpages doesn't have description meta tag, for example wikipedia. Here says, that If tag doesn't exist, then search engine, like Google get shorter paragraph. I don't know how to implement this ...
1
vote
0answers
63 views
Syntax questions C# Html-Agility-Pack
This code sums the last column in the first table contained in an html document. (It ignores the first row.)
1.) How do I sum a specified column rather than just the last one?
var sum = ...
2
votes
1answer
73 views
Setting textbox innertext of an externally loaded webpage using AgilityPack
I am trying to write a code which automatically fills in a textbox inside of an external webpage. So I write code below inside of a buttonclick event and what I want it to do is, just load the ...
0
votes
1answer
56 views
Using HTMLAgilityPack Extract text, which is not between tags and comes after specific node
HTML code:
<b> CAR </b>
<br></br>
Car is something you can drive.
<br></br>
<br></br>
C# code:
HtmlAgilityPack.HtmlDocument ...




