New Post: How to extract the contents of webpage and links from a website and...
I basically want to extract the contents of the webpage, crawl into all the links and get all the information and save it. Is this possible with htmlAgilityPack?
View ArticleNew Post: Using HTML Agility Pack with WP7.5
Hi, I'm trying to compile the source for WP7.5. Is there a guide or a reference to follow for compiling the source for WP7.5? I'm trying to extract the text from a given URL and I would want my WP7...
View ArticleNew Post: Using HTML Agility Pack with WP7.5
There is w WP 7.5 binary available in the Nuget package http://nuget.org/packages/HtmlAgilityPack
View ArticleNew Post: Using HTML Agility Pack with WP7.5
Thanks a lot. Will look into it and give an update.
View ArticleNew Post: Using HTML Agility Pack with WP7.5
I successfully added HtmlAgilityPack to my project. However, I tried the following code to extract the body text: HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument(); // There...
View ArticleNew Post: Using HTML Agility Pack with WP7.5
Reference the System.Xml assembly in the project that is using the agility pack would be my first guess. I was going to say perhaps the internal library isn't but it is according to the latest source....
View ArticleNew Post: Using HTML Agility Pack with WP7.5
I followed the nuget method of installing HtmlAgility Pack and in fact added the System.Xml reference again after I received this error. However, I still get the same error although I've referenced the...
View ArticleNew Post: Using HTML Agility Pack with WP7.5
I got same error The type 'System.Xml.XPath.IXPathNavigable' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Xml.XPath, Version=2.0.5.0, Culture=neutral,...
View ArticleNew Post: Using HTML Agility Pack with WP7.5
Found working version here - https://github.com/Windcape/HtmlAgilityPackWP/downloads
View ArticleNew Post: Using HTML Agility Pack with WP7.5
add a reference to System.Xml.XPath that comes with the Silverlight 4 SDK. WP7 Mango is compatible with SL4 libraries . The dll can be found at C:\Program Files (x86)\Microsoft...
View ArticleNew Post: Using HTML Agility Pack with WP7.5
Thanks @darthobiwan. I rectified issue with referencing and I'm able to build and run my project without errors.
View ArticleNew Post: New HTML Agility Pack Testbed
HAP Testbed features: Built-in web request Live preview on Xpath result Copy / Paste Html Codes Results can viewed as Html code or Rendered using WebBrowser control Can spawn multiple window (Project)...
View ArticleNew Post: Any chance to see some patches merged?
Hi, don't take me wrong, I appreciate your work, your giving to a community during your spare time, etc... and that's with similar spirit I and others submitted patches: give something back....
View ArticleNew Post: ArgumentOutOfRangeException in HtmlNode
ArgumentOutOfRangeException in HtmlNode for version 1.4.0.0 It's not often but it suddenly threw an exception STATEMENT ON MY APP HtmlNodeCollection nodes =...
View ArticleNew Post: Does HAP for WP7 contain the func 'SelectNodes' ?
Windows 7.1 still knows no System.XML.Xpath so the 7.1 lib is not working with XPath support
View ArticleNew Post: WCF Serialization issue
Hi, I am using HtmlAgilityPack in a WCF Service. It is giving serialization releated exception and not starting service. I am pasting exception here. Please help. The service encountered an error. An...
View ArticleNew Post: target images within a particular div issue
Hi There First of all, thanks for the people who spend time and energy on such projects. Also, I seem to have a problem with the agilitypack. 1 - I am trying to get all the images from a particular...
View ArticleNew Post: HtmlNode.Line does not refresh after document manipulation
It seems that HtmlNode.Line does not refresh/reupdate after performing document manipulations such as adding and removing nodes. Is this a known issue? is there a way to force it to refresh? Thanks
View ArticleNew Post: retive img src link
have this code to get the img src link but it just finds for http and not for imgsrc tag and then copy the link so i need to frist find imgsrc within that class and the the http link, how can i get.....
View Article