New Post: How to use htmlagilitypack in Windows Phone 7
As I found on another thread, just add a reference to the Silverlight assembly it's complaining about. It's usually located here: C:\Program Files (x86)\Microsoft SDKs\Silverlight\v4.0\Libraries\Client
View ArticleNew Post: Using HTML Agility Pack with WP7.5
Thanks. That sorted it for me darthobiwan!
View ArticleNew Post: How can I get the variable in javascript section of HTML
I want to get a variable of string in the javascript section , how can I get the variable ? Is there have a API in Html Agility Pack? Thank you vey much!
View ArticleNew Post: Writing scraper for Windows 7
I am using HtmlAgilityPack for Windows Phone 7.1 and next code is working great:public MainPage() { InitializeComponent(); HtmlWeb.LoadAsync("http://www.xkcd.com", DownLoadCompleted); } void...
View ArticleNew Post: How can I replace html tags with custom tags
I need to updated html tags with my own tags. Like replacing input with ASP.Net textbox. How can I achieve this. Any code examples. Or read entire htmls panel with code? Please suggest.
View ArticleNew Post: Added Functionality - LoadUri
Hi, Thanks for the great add-on-method, exactly what I was looking for... I also needed to pass in credentials, so I'm posting the changes I did here as well... public void LoadUri(string uri) {...
View ArticleNew Post: DocumentNode.Descendants comes back with null values
I am trying to scrape a website for a Windows 8 store app and every resource I find says to run a linq statement off of DocumentNode.Descendants("tagName"); However, no matter how I try it I get back...
View ArticleNew Post: convert a string with HTML tags with a properly formatted string
Hi, Can I convert a string with HTML tags with a properly formatted string? I mean <TR>Test</TR><TR>Test2</TR> Can this be, Test Test2
View ArticleNew Post: I want to get the link url when i click on the link..
in my default.aspx page in page load I am doing this. When i click on the link it show error. i want to get the link url for clicked links, or when i click on a link in session or variable it will...
View ArticleNew Post: Ajax
some page have ajax link for pagination. Like this page below:http://realtors.realtylink.org/page/realtors/ezlist_members_.aspx How I can got to page 2 or 4 or 5 with htmlagility
View ArticleNew Post: Text Highlight color
hi , I got the solution using the text property "text.Highlight(Highlight)".
View ArticleNew Post: why ignore four specified string
see code below: public static string HtmlEncode(string html) { if (html == null) { throw new ArgumentNullException("html"); } // replace & by & but only once! Regex rx = new...
View ArticleNew Post: Option not to fix malformed HTML
Hi, I was wondering if there is an option the set HtmlDocument not to fix malformed HTML. Thanks.
View ArticleNew Post: Scrape website without document extensions
Is there a way to get htmlagilitypack to load a webpage in windowsphone that does not have a document extension? eg.http://www.bbc.co.uk/sport/tennis/mens-singles/live-scores
View ArticleNew Post: No child nodes for FORM objects
In Html specification form tag can overlap, so Htmlagilitypack handle this node a little different. Can you clarify what you mean here? This is pretty confusing default behavior.
View ArticleNew Post: Added couple of nodes to the existing Node, Now im not able to find...
I have added the nodes to existing Node using the following code. Im not able to find the newly added node in the 'htmldoc'. HtmlDocument htmldoc = new HtmlDocument(); htmldoc.LoadHtml(reportHTML); var...
View ArticleNew Post: iterate through like items
HTML I'm scraping is below. It contains a post and 2 replies:<div class="share_buttons noprint">...</div> <strong>Dan</strong> Says:<br/> <span class="small...
View Article