New Post: Newbie Select Question
Hi I have the html below and essentially want to build a Dictionary<string, string> object to use later on. Building the dictionary is no problem, it's the Linq to build a series of id : value...
View ArticleNew Post: Newbie Select Question
Is the below weak - it sort of gets the first two cells - but if feels really gludgy! foreach (HtmlNode table in doc.DocumentNode.SelectNodes("//table")) { foreach (HtmlNode row in...
View ArticleNew Post: Accessing a column of an Html Table
Can the Html Agility Pack help me access the elements of an html table in a specific column very quickly?HtmlTable does not contain an easy or quick way to access an entire column and model it as a...
View ArticleNew Post: Get Ordinal Index of paragraph element
Hi, How can I get the Ordinal Index of a paragraph element in HTML Agility Pack, like we have sourceindex property in MSHTML. Please help, it is critical for me. Thanks Ami
View ArticleNew Post: using htmlagilitypack with ajax div load c#
Oh, thank you. Visit Website: http://chukysofpt.wordpress.com And http://kinhdoanhtoilyson.wordpress.com
View ArticleNew Post: How to select the racecard information
http://centrebet.com/#Racing/Thoroughbred/0 Having a lot of trouble with the following page. I can't seem to get a hold of any of the right nodes in order to select the race names or any of the...
View ArticleNew Post: Source Code for 1.4.9
I am using HAP 1.4.9 via NuGet in a current Visual Studio project. I downloaded the source from CodePlex but it is not the same version I am running. I'd like to get the 1.4.9 source. Is it still public?
View ArticleNew Post: Source Code for 1.4.9
1.4.9 posted to SVN. The only real update was a fix to the PCL build in the Nuget package. There were no code changes
View ArticleNew Post: Source Code for 1.4.9
Do you mean the current version under "1.4.0" on CodePlex actually contains the same source as "1.4.9" from NuGet? In that case can I submit updated code to the repository here? There is an ordering...
View ArticleNew Post: Source Code for 1.4.9
The latest source is available here http://htmlagilitypack.codeplex.com/SourceControl/latest .
View ArticleNew Post: Check whether an element is displayed inline or block
I'm currently using HtmlAgilityPack to parse some HTML files and I would like to know if there is a way to detect if an HtmlAgilityPack node is an inline/block element or it is displayed inline/block....
View ArticleNew Post: DIV background-image to image
i'm newbie here. I need to transform div background-image to image tha i can save. Someone can help me?
View ArticleNew Post: How to get content using httpAgilityPack website?
I have a link:http://dictionary.cambridge.org/dictionary/british/appeal, new version have not htmlNode and SelectSingleNode. Now, I want to get content from this link and I want to get that's...
View ArticleNew Post: InnerHtml works wrong!!!
i wirte some code in LINQPad:void Main() { var html = new HtmlDocument(); html.OptionAutoCloseOnEnd = true; html.OptionWriteEmptyNodes = true; html.OptionFixNestedTags = true; html.LoadHtml("<br...
View ArticleNew Post: How to get content using httpAgilityPack website?
doc.LoadHtml(content); HtmlNodeCollection defNodes=doc.DocumentNode.SelectNodes("//span[@class='def']); var defs=from c in defNodes where c.InnerText.Contains("serious") select c;
View ArticleNew Post: Html Entities get html encoded?
string noNbsp= Regex.Replace(inputHTML, @" ", "").Trim();
View ArticleNew Post: Support for .NET Core
Hi, are there any plans package compatible with ASP.NET 5 running on .NET Core? There are only few changes needed to make need working. Thank you! Dusan
View ArticleNew Post: using htmlagilitypack with ajax div load c#
dinhchinh wrote: Oh, thank you. Visit Website: http://chukysofpt.wordpress.com And http://kinhdoanhtoilyson.wordpress.com I was pleased to find your useful information. I hope you and I will have a...
View Article