New Post: Does HAP for WP7 contain the func 'SelectNodes' ?
I have uploaded a new Nuget package that includes versions for windows phone, the one for wp7.1 includes the xpath options. I'll be updating version control shortly
View ArticleNew Post: Does HAP for WP7 contain the func 'SelectNodes' ?
Great! And thanks a lot for the product!
View ArticleNew Post: NullReferenceException on HAP for WP7
At this URI "http://wap.kdslife.com/t/1/15/6673395/?u=0&sc=235&rnd=b2be3573d7" The parsing document is null, and if i access the documentNode it will catch a NullReferenceException error. how...
View ArticleNew Post: WP7 and HAP
Hello. I'm developing a WP7.5 app, and I'm using HAP. But I have some syntax problems, I'm using linq and hap. I have following structure: <div id="inhalt"> <div...
View ArticleNew Post: Nuget version has old bugs?
Hi Guys, I've installed v1.4.3 through Nuget, I think the tool is great, but am encountering what appear to be old reported bugs. Namely http://htmlagilitypack.codeplex.com/workitem/28756 and...
View ArticleNew Post: Incorrectly recognized by tag
it's got to do with overlapping, if you want it to work, just do HtmlNode.ElementsFlags.Remove("form") before loading the html. original answer was found here,...
View ArticleNew Post: Extract data from an HTML form using HTML Agility pack
m trying to list all nodes in the HTML form dynamically using HTML agility pack, meaning that I don't know the names of the Attributes and the input names. The problem is when I want to get the label...
View ArticleNew Post: Removing unwanted nodes using HTML Agility pack
Is it possible to remove nodes with let's say (//table, inputs) tag, but keep its children(text and inputs)?using HTML Agility pack. As a proposed solution for my unanswered question :...
View ArticleNew Post: Extract data from an HTML form using HTML Agility pack
I'm trying to extract content as well from an HTML file and I'm having difficulty doing so as well... Were you successful doing what you wanted?
View ArticleNew Post: Extract data from an HTML form using HTML Agility pack
What content exactly do u want to extract? am still writing the code to get the label corresponding to the input field! :(
View ArticleNew Post: How do I read HTML Document using HtmlAgilityPack?
Hi there, I'm writing a c# program to extract content of webpage and save extracted content to a collection. I looked for documentation but I wasn't successful finding the right method to do so. I'm...
View ArticleNew Post: Extract data from an HTML form using HTML Agility pack
Hey dkilani, I want to extract all the links to all files available in the page.... Like jpgs and others and store all of those links in a collection. Thanks,
View ArticleNew Post: Extract data from an HTML form using HTML Agility pack
1) use HTML Agility pack to transform input HTML into XHTML 2) use XHTML with a XDocument or XElement and LINQ to XML to query for A href Agility pack linq is not as deep as LINQ to XML,, so avoid it.
View ArticleNew Post: Extract data from an HTML form using HTML Agility pack
XElement x = ...; var hrefs =from element in x.Descendants("a") let href=(string)element.Attribute("href") where !String.IsNullOrWhitespace(href) select href; You can select the element if you prefer.
View ArticleNew Post: Extract data from an HTML form using HTML Agility pack
Interesting!! what do you mean by not as deep?I have few questions regarding c# and HTML agility pack and the c# web browser! if you don't mind!I logged in to a page , but now When I want to take the...
View ArticleNew Post: Congratulations on a great library
Hi I just used your library to write a utility to do some HTML cleanup. The library is really easy to use and works well - thanks for creating it Friedrich Brunzema
View ArticleNew Post: Extract data from an HTML form using HTML Agility pack
Does the solution provided by softlion apply to my question too? If so, do you guys mind explaining to me how to extract the links from the provided methods given that I passed the webpage source...
View ArticleNew Post: webbrowser.goback()
webbrowser.goback() doest work if previous page is getting some code with hap any iedia to solve this?
View ArticleNew Post: 'gzip' is not a supported encoding name.
Hey, im trying to load an webpage, but my application fires me an exception 'gzip' is not a supported encoding name. how to correct this ?
View ArticleNew Post: exclude child node but include current node
hi, i'm scraping a site and am trying to grab only the text inside the h4 tag (Wed., November 30, 9:00pm), but not the stuff in the nested a tag (VenueName). I'm searching for specific PeopleNames...
View Article