HTML Agility Pack is an open-source HTML parser that builds a read/write DOM and supports Linq, plain XPATH or XSLT.
0
votes
2answers
28 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
22 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
25 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
24 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
27 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
21 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
28 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
30 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 ...
-1
votes
0answers
46 views
Scraping Multiple Id's & Classes C#
I am making a project in C# for class. I decided to create a web scraper. I am using the html agility pack to parse the html file. I can obtain a list of numbers or emails off of 1 website alone. What ...
3
votes
0answers
32 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
22 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
29 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
43 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
24 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 ...
0
votes
1answer
21 views
How to get the value from a specific cell C# Html-Agility-Pack
How do I get a value from a specific location in the second table in the document. I need the value from the second cell down and third column over in the html document below. How do I do this.
...
1
vote
1answer
55 views
Parse html table using LINQ and HtmlAgilityPack
I want to parse date, link text and link href from table class='nice' on web page http://cslh.cz/delegace.html?id_season=2013
I have created object DelegationLink
public class DelegationLink
{
...
0
votes
0answers
33 views
Why does this HtmlAgilityPack code stop working when I dig deeper via XPath?
This code runs properly:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using ...
1
vote
1answer
32 views
Compiling HTML Agility Pack for Monotouch
I have been pointed to this answer regarding using HTML Agility Pack in Monotouch. However the answer is poorly formatted, ambiguous, and some parts have android mentioned.
I am new to Xamarin could ...
0
votes
1answer
58 views
How to get text that has no tag with htmlAgilityPack
I have an html file like below
<div>
<div style="margin-left:0.5em;">
<div class="tiny" style="margin-bottom:0.5em;">
<b><span class="h3color tiny">This review ...
0
votes
1answer
64 views
Extract InnerText from HTML
we have the tree
1. level 1
1.1. level 1.1
1.1.1. level 1.1.1
We have the HTML of that tree.
We want to extract text with level number (level no = 1, text = "level 1",.. ) What is ...
-2
votes
0answers
21 views
Paging issue in HTMLAgility [closed]
I have a website to scrape which has paging on it. When I use HTML Agility to download the HTML data it always loads first page. But when I paste the same url on browser it just works fine.
The url ...
0
votes
1answer
52 views
Sum colum in an html table using C# and html-agility-pack
How do I sum the values in a specific column of a specific table when the number of rows are unpredictable? Note that the header row contains text and uses "" instead of "".
Using the sample html ...
0
votes
2answers
48 views
HTML Agility Pack (C#) malforms my code
I'm currently coding a desktop application in c# which also has to handle XHTML document manipulation. For that purpose I'm using the Html Agility Pack which seemed to be okay so far. After carefully ...
0
votes
1answer
29 views
HtmlAgilityPack isn't getting all the html code/text from a web page
For starters, thank you in advance!
I am able to extract a section of code from a web page that looks similar to the following block of code.
<div id="playerStats">
<div ...
0
votes
1answer
30 views
HtmlAgilityPack pulling extra text from a block of html
I am trying to extract certain parts of a web page, but I am having some trouble. I am very new to the web parsing so please assume I know nothing and keep answers very detailed.
I have this section ...
0
votes
1answer
42 views
'System.Net.WebException' in HtmlAgilityPack using Parallel.ForEach loop
I have a web scraper that processes about 2,000 pages that I've tried to speed up by using a Parallel.ForEach loop. My current code (trimmed for brevity) is:
...
0
votes
1answer
26 views
Parsing results from HTMLAgiltyPack
I'm trying to parse the Yahoo Finance page for a list of stock symbols and company names. The URL i'm using is: http://uk.finance.yahoo.com/q/cp?s=%5EFTSE
The code i'm using is;
...
1
vote
1answer
40 views
HtmlAgilityPack: Given a html file, how can I get nodes based on given class attributes
So basically I want to filter out the HTML and preserve the hierarchy of the nodes. For example, I have this and I only want the HTML that has the class "b.1.1" in its hierarchy:
<html>
...
1
vote
1answer
31 views
htmlagilitypack parse table by th
I am trying to parse the following table using the htmlagilitypack.
<tr>
<th>
Anställda:
</th>
<td>
0 - 4
</td>
...
0
votes
1answer
54 views
How can I get this value using HtmlAgilityPack?
Not sure what that's called but it represents the user that created the forum thread:
<a href="http://myforum.com/forum/most-fav-action-movies/" id="thread_title_10178" ...
1
vote
1answer
37 views
c# win8 HtmlAgilityPack trouble
Hello I want to parse HTML from a website for metro app. I saw some tutorials about HtmlAgilityPack and I decided that it is kinda easily. But when I started project, I saw that some methods or ...
1
vote
4answers
86 views
How to remove all tags and get the pure text?
I had to store the user input text in my database with HTML and CSS formats.
The case is:
RadEditor ,The user copy the text from MSWord to this editor then i store this text in the database with ...
-1
votes
1answer
70 views
HtmlAgilityPack - Remove child nodes but retain inner text for the main node without XPath
I have html like:
<div class="asd">
lalala
</br>
lalala2
<div>
aaaaa
</div>
</div>
I need to get only "lalala ...
-2
votes
0answers
21 views
HtmlAgilityPack and Failure to identify attributes [closed]
I am doing some HTML processing and have spotted a failure or fault where htmlagilitypack fails to identify that a certain attribute exists.
I copied the html out and tested and it is there - When ...
1
vote
2answers
36 views
How to get something like “descendant-AND-self::” to htmlNode
I parse from this html table:
<table align="center">
<tbody>
<!-- riadok -->
<tr>
<td valign="middle" align="right">
<form ...
0
votes
2answers
49 views
How to get the count of tables in an html file with C# and html-agility-pack
This is a newbie question so please provide working code.
How do I count the tables in an html file using C# and the html-agility-pack?
(I will need to get values from specific tables in an html ...
-2
votes
0answers
27 views
how to implement facebook like this feature in asp.net using Html Agility pack
I need to implement Facebook like this in one of the website i am developing. I have downloaded Html Agility pack, i am able to get the title of the page and description, but do not know how to get ...
1
vote
2answers
62 views
How to select specific images and save from a particular url? (Description Inside)
I need to select and save some specific images from a site by entering the url in the textbox in my site.
I've loaded all the images from a site url, by using html agility. but now I don't know how ...
1
vote
1answer
25 views
Using htmlagilitypack how can we determine whether URL or required webpage is loaded or not
I want to know that, using htmlagilitypack how can we determine whether webpage of given URL is loaded or not, because I want to associate this load with the process bar. Is there any idea how can to ...
-2
votes
0answers
36 views
What language besides Javascript offers the best asynchronous http requests? [closed]
I have a bookmarklet that is used to test a list of given products on our various production and staging websites. This is not ideal because it requires everyone to have either firefox or chrome, and ...
1
vote
1answer
67 views
Select items from parsed html
I want to select some ítems from an HTML webpage and put them into a list. Each ítem will be an instance of this class:
public class shopItem
{
private String itemName;
private String ...
0
votes
1answer
53 views
Wrap in an element with HtmlAgilityPack?
I have an HtmlDocument that may or may have a proper <head> and <body> section or might just be an html fragment. Either way, I want to run it through a function that will ensure that it ...
0
votes
0answers
22 views
AjaxControlToolkit.Sanitizer is not working with HtmlAgilityPack 1.4.6
I am using HtmlAgilityPackSanitizerProvider in my asp.net 4.5 website application.
I want to use latest HtmlAgilityPack 1.4.6 but the asp.net ajax control toolkit SanitizerProviders giving me error ...
0
votes
1answer
65 views
HtmlAgilityPackSanitizerProvider is not working am doing incorrect?
Asp.net 4.5 , IIS 8
The sanitizer even not removing this simple script
<script>alert('error')</script>
Ok here my config
<asp:TextBox ID="txtMessageBody" TextMode="MultiLine" ...
0
votes
0answers
100 views
Getting the page source from Iframe with code (c#) [closed]
there is this page and it loads the content in Iframe. So when I am using google chrom, I can right click an area, and go view frame source and get all the details of the Iframe content. I want to ...
-2
votes
2answers
65 views
List<Uri> How do I get at its contents? [closed]
I've got the following class that uses the HtmlAgilityPack to create a list of uri's from the current page/document.
public List<Uri> getLinks()
{
var linksOnPage = from lnks in ...
0
votes
1answer
50 views
AG_E_NETWORK_ERROR while downloading some images from web in WindowsPhone
I am using HtmlAgilityPack.
I am downloading articles and images from one web site. 80% images downloading without problem. But some images throwing error. I can see name of error in image_failed ...
0
votes
1answer
35 views
Infinite Loop parsing a table using htmlagilitypack
I am trying to parse through TR's using HtmlAgilityPack and do something different with the 1st, 2nd, 3rd etc TD's.
I am almost there but my code (below) causes an infinite loop. It just repeats the ...
0
votes
0answers
82 views
C# http request cookies or redirect error
I am trying to use C# code to log into a site. It has been working but than recently I can't get it to work and I can't figured out did the website changed the cookie setting or is my redirect method ...
0
votes
1answer
32 views
Content of NextSibling not being printed out
I have this piece of code, and I can't figure out why it's not printing out the content of the next container.
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
...




