<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>htmlagilitypack Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/Wiki/View.aspx?ProjectName=htmlagilitypack&amp;title=Home</link><description>htmlagilitypack Wiki Rss Description</description><item><title>New Comment on "Examples"</title><link>https://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C27703</link><description>can we use HTML Agility Pack to extract data from asp.net web items like web pages, stile sheets etc&amp;#63;</description><author>sherihan</author><pubDate>Fri, 07 Jun 2013 05:51:51 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20130607055151A</guid></item><item><title>New Comment on "Examples"</title><link>https://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C27651</link><description>I am not able to Load pages with different extensions like .cms.&amp;#10;What can be the problem&amp;#63; or it is not supported&amp;#63;</description><author>ParitoshSoni</author><pubDate>Sat, 01 Jun 2013 13:03:51 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20130601010351P</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C26355</link><description>is there documentation or i have to discover myself &amp;#63;</description><author>eljoker2k</author><pubDate>Tue, 29 Jan 2013 11:53:44 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20130129115344A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C25404</link><description>After fixing the bug in the example &amp;#40;as per rbaettler&amp;#39;s comment&amp;#41;, I have had no trouble using the Html Agility Pack at all. So far it seems to do what it says on the tin, which is to allow you to parse HTML documents using xpath expressions, or just navigate the html dom directly. Nice, thanks&amp;#33;</description><author>MikePanter</author><pubDate>Tue, 30 Oct 2012 01:35:42 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20121030013542A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C24965</link><description>i am using HAP ,i want know why i am not able to get the child node of a selected node, for example if i select a form tag using .SelectSingleNode&amp;#40;&amp;#41; which successfully returns me correct form&amp;#40;checked by ID&amp;#41; but with no child node , please help me to find a way to select form tag with its child node .&amp;#10;Thank you</description><author>Dheeraj2012</author><pubDate>Wed, 12 Sep 2012 12:40:29 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120912124029P</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C24803</link><description>I figured it out... i have used VS 2010 C&amp;#43;&amp;#43; but now i&amp;#39;m using VB 2010 and everything works great. Which are you use&amp;#63;</description><author>valgussev</author><pubDate>Fri, 24 Aug 2012 11:47:08 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120824114708A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C24802</link><description>Hi, can you help me with a problem of adding Html Agility Pack&amp;#63;&amp;#10;&amp;#10;I&amp;#39;ve tried to use it via Visual Studio and qt creator, but every time when i add this lines&amp;#10;using System&amp;#59;&amp;#10;using System.Collections.Generic&amp;#59;&amp;#10;using System.Linq&amp;#59;&amp;#10;using System.Text&amp;#59;&amp;#10;using HtmlAgilityPack&amp;#59;&amp;#10;i have errors like &amp;#39;HtmlAgilityPack&amp;#39; &amp;#58; symbol cannot be used in a using-declaration.&amp;#10;Via which program you usually add Html Agility Pack&amp;#63;</description><author>valgussev</author><pubDate>Fri, 24 Aug 2012 09:06:38 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120824090638A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C24661</link><description>using System&amp;#59;&amp;#10;using System.Collections.Generic&amp;#59;&amp;#10;using System.Linq&amp;#59;&amp;#10;using System.Text&amp;#59;&amp;#10;using HtmlAgilityPack&amp;#59;&amp;#10;&amp;#10;namespace HtmlAgility&amp;#10;&amp;#123;&amp;#10;&amp;#9;class Program&amp;#10;&amp;#9;&amp;#123;&amp;#10;&amp;#9;&amp;#9;static void Main&amp;#40;string&amp;#91;&amp;#93; args&amp;#41;&amp;#10;&amp;#9;&amp;#9;&amp;#123;&amp;#10;&amp;#9;&amp;#9;&amp;#9;HtmlDocument doc &amp;#61; new HtmlDocument&amp;#40;&amp;#41;&amp;#59;&amp;#10;&amp;#9;&amp;#9;&amp;#9;doc.Load&amp;#40;&amp;#34;file.htm&amp;#34;&amp;#41;&amp;#59;&amp;#10;&amp;#9;&amp;#9;&amp;#9;foreach &amp;#40;HtmlNode link in doc.DocumentNode.SelectNodes&amp;#40;&amp;#34;&amp;#47;&amp;#47;a&amp;#91;&amp;#64;href&amp;#93;&amp;#34;&amp;#41;&amp;#41;&amp;#10;&amp;#9;&amp;#9;&amp;#9;&amp;#123;&amp;#10;&amp;#9;&amp;#9;&amp;#9;&amp;#9;HtmlAttribute att &amp;#61; link.Attributes&amp;#91;&amp;#34;href&amp;#34;&amp;#93;&amp;#59;&amp;#10;&amp;#9;&amp;#9;&amp;#9;&amp;#9;att.Value &amp;#61; &amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.google.com&amp;#34;&amp;#59;&amp;#10;&amp;#9;&amp;#9;&amp;#9;&amp;#125;&amp;#10;&amp;#9;&amp;#9;&amp;#9;doc.Save&amp;#40;&amp;#34;file.htm&amp;#34;&amp;#41;&amp;#59;&amp;#10;&amp;#9;&amp;#9;&amp;#125;&amp;#10;&amp;#9;&amp;#125;&amp;#10;&amp;#125;</description><author>mcap</author><pubDate>Thu, 09 Aug 2012 01:45:29 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120809014529A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C24581</link><description>HtmlDocument doc &amp;#61; new HtmlDocument&amp;#40;&amp;#41;&amp;#59;&amp;#10; doc.Load&amp;#40;&amp;#34;file.htm&amp;#34;&amp;#41;&amp;#59;&amp;#10; foreach&amp;#40;HtmlNode link in doc.DocumentElement.SelectNodes&amp;#40;&amp;#34;&amp;#47;&amp;#47;a&amp;#91;&amp;#64;href&amp;#34;&amp;#93;&amp;#41;&amp;#10; &amp;#123;&amp;#10;    HtmlAttribute att &amp;#61; link&amp;#91;&amp;#34;href&amp;#34;&amp;#93;&amp;#59;&amp;#10;    att.Value &amp;#61; FixLink&amp;#40;att&amp;#41;&amp;#59;&amp;#10; &amp;#125;&amp;#10; doc.Save&amp;#40;&amp;#34;file.htm&amp;#34;&amp;#41;&amp;#59;&amp;#10;This does not compile. Nor Document element. What am i missing&amp;#63;</description><author>justin_romaine</author><pubDate>Wed, 01 Aug 2012 07:57:00 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120801075700A</guid></item><item><title>Updated Wiki: Home</title><link>http://htmlagilitypack.codeplex.com/wikipage?version=8</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;Attention to get the latest Official Html Agility Pack releases please use the
&lt;a href="http://nuget.org/packages/HtmlAgilityPack"&gt;Nuget Package&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Get the latest Html Agility Pack updates at our new Twitter feed &lt;a title="http://twitter.com/htmlagilitypack" href="http://twitter.com/htmlagilitypack"&gt;
@htmlagilitypack&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What is exactly the Html Agility Pack (HAP)?&lt;/strong&gt; &lt;br&gt;
&lt;br&gt;
This is an agile HTML parser that builds a read/write DOM and supports plain XPATH or XSLT (you actually don't HAVE to understand XPATH nor XSLT to use it, don't worry...). It is a .NET code library that allows you to parse &amp;quot;out of the web&amp;quot; HTML files. The
 parser is very tolerant with &amp;quot;real world&amp;quot; malformed HTML. The object model is very similar to what proposes System.Xml, but for HTML documents (or streams).
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Html Agility Pack&lt;/strong&gt; now supports Linq to Objects (via a LINQ to Xml Like interface). Check out the new beta to play with this feature
&lt;br&gt;
&lt;br&gt;
Sample applications:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Page fixing or generation. You can fix a page the way you want, modify the DOM, add nodes, copy nodes, well... you name it.
&lt;/li&gt;&lt;li&gt;Web scanners. You can easily get to img/src or a/hrefs with a bunch XPATH queries.
&lt;/li&gt;&lt;li&gt;Web scrapers. You can easily scrap any existing web page into an RSS feed for example, with just an XSLT file serving as the binding. An example of this is provided.
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
There is no dependency on anything else than .Net's XPATH implementation. There is no dependency on Internet Explorer's MSHTML dll or W3C's HTML tidy or ActiveX / COM object, or anything like that. There is also no adherence to XHTML or XML, although you can
 actually produce XML using the tool. The version posted here on CodePlex is for the .NET Framework 2.0. If you need the old version, please go to the old page or drop me a note.
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://htmlagilitypack.codeplex.com/wikipage?title=Examples"&gt;Examples&lt;/a&gt; - Code Examples
&lt;br&gt;
&lt;br&gt;
If you want to participate to the project - because that's the whole purpose of putting the source there, right - use the forums or drop me a note (simon underscore mourier at hotmail dot com)!
&lt;br&gt;
&lt;br&gt;
Happy coding, scraping, scanning, html-ing, xhtml-ing, etc... :^) &lt;br&gt;
Simon Mourier.&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>DarthObiwan</author><pubDate>Wed, 11 Jul 2012 02:30:04 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120711023004A</guid></item><item><title>Updated Wiki: Home</title><link>http://htmlagilitypack.codeplex.com/wikipage?version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;Attention to get the latest Official Html Agility Pack releases please use the
&lt;a href="http://nuget.org/packages/HtmlAgilityPack"&gt;Nuget Package&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Get the latest Html Agility Pack updates at our new Twitter feed &lt;a title="http://twitter.com/htmlagilitypack" href="http://twitter.com/htmlagilitypack"&gt;
@htmlagilitypack&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What is exactly the Html Agility Pack (HAP)?&lt;/strong&gt; &lt;br&gt;
&lt;br&gt;
This is an agile HTML parser that builds a read/write DOM and supports plain XPATH or XSLT (you actually don't HAVE to understand XPATH nor XSLT to use it, don't worry...). It is a .NET code library that allows you to parse &amp;quot;out of the web&amp;quot; HTML files. The
 parser is very tolerant with &amp;quot;real world&amp;quot; malformed HTML. The object model is very similar to what proposes System.Xml, but for HTML documents (or streams).
&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Html Agility Pack&lt;/strong&gt; now supports Linq to Objects (via a LINQ to Xml Like interface). Check out the new beta to play with this feature
&lt;br&gt;
&lt;br&gt;
Sample applications:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Page fixing or generation. You can fix a page the way you want, modify the DOM, add nodes, copy nodes, well... you name it.
&lt;/li&gt;&lt;li&gt;Web scanners. You can easily get to img/src or a/hrefs with a bunch XPATH queries.
&lt;/li&gt;&lt;li&gt;Web scrapers. You can easily scrap any existing web page into an RSS feed for example, with just an XSLT file serving as the binding. An example of this is provided.
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br&gt;
There is no dependency on anything else than .Net's XPATH implementation. There is no dependency on Internet Explorer's MSHTML dll or W3C's HTML tidy or ActiveX / COM object, or anything like that. There is also no adherence to XHTML or XML, although you can
 actually produce XML using the tool. The version posted here on CodePlex is for the .NET Framework 2.0. If you need the old version, please go to the old page or drop me a note.
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://htmlagilitypack.codeplex.com/wikipage?title=Examples"&gt;Examples&lt;/a&gt; - Code Examples
&lt;br&gt;
&lt;br&gt;
If you want to participate to the project - because that's the whole purpose of putting the source there, right - use the forums or drop me a note (simon underscore mourier at hotmail dot com)!
&lt;br&gt;
&lt;br&gt;
Happy coding, scraping, scanning, html-ing, xhtml-ing, etc... :^) &lt;br&gt;
Simon Mourier.&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>DarthObiwan</author><pubDate>Wed, 11 Jul 2012 01:57:41 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120711015741A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C23834</link><description>Is there no library supported by the Windows Phone.&amp;#63;</description><author>VigneshPT</author><pubDate>Sun, 27 May 2012 04:22:25 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120527042225A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C23496</link><description>hello, but if I wanted to copy the url IMG &amp;#40;.jpg&amp;#41; address within this code as I do&amp;#63;&amp;#10;&amp;#10;code&amp;#58;&amp;#10;&amp;#60;TABLE id&amp;#61;uezszu_24 class&amp;#61;&amp;#34;uiGrid fbPhotosGrid&amp;#34; cellSpacing&amp;#61;0 cellPadding&amp;#61;0&amp;#62;&amp;#10;  &amp;#60;TBODY&amp;#62;&amp;#10;  &amp;#60;TR&amp;#62;&amp;#10;    &amp;#60;TD class&amp;#61;&amp;#34;vTop&amp;#34;&amp;#62;&amp;#10;      &amp;#60;DIV class&amp;#61;Wrapper&amp;#62;&amp;#60;A &amp;#10;      class&amp;#61;&amp;#34;uiMediaThumb uiScrollableThumb uiMediaThumbHuge&amp;#34; &amp;#10;      href&amp;#61;&amp;#34;www.cccc.com&amp;#47;index.php&amp;#34; &amp;#10;      name&amp;#61;43563463 rel&amp;#61;theater aria-label&amp;#61;&amp;#34;photo&amp;#34; &amp;#10;      ajaxify&amp;#61;&amp;#34;dsgdgbdfgr45y6ghd&amp;#34;&amp;#62;&amp;#60;I &amp;#10;      style&amp;#61;&amp;#34;BACKGROUND-IMAGE&amp;#58; url&amp;#40;http&amp;#58;&amp;#47;&amp;#47;www.fressdgf.com&amp;#47;image.jpg&amp;#41;&amp;#34;&amp;#62;&amp;#60;&amp;#47;I&amp;#62;&amp;#60;&amp;#47;A&amp;#62;&amp;#60;&amp;#47;DIV&amp;#62;&amp;#60;&amp;#47;TD&amp;#62;&amp;#10;      &amp;#60;&amp;#47;TR&amp;#62;&amp;#10;      &amp;#60;&amp;#47;TBODY&amp;#62;&amp;#10;      &amp;#60;&amp;#47;TABLE&amp;#62;</description><author>wronskiano40</author><pubDate>Mon, 30 Apr 2012 11:58:11 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120430115811A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C23146</link><description>How to find the ID value of a particular value&amp;#63; e.g. Below is the string I obtain from a website and when the user selects a particular school from a list of schools, the ID of that school is to be captured for further processing. The part of html tag I need to look at is given below&amp;#58;&amp;#10;&amp;#10;&amp;#10;&amp;#60;td class&amp;#61;&amp;#34;Miles&amp;#34;&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;td&amp;#62;&amp;#60;td CLASS&amp;#61;&amp;#34;InstDesc&amp;#34;&amp;#62;&amp;#60;A href&amp;#61;&amp;#34;JavaScript&amp;#58;MoreInfo&amp;#40;&amp;#39;sch_info_popup.asp&amp;#39;&amp;#43;&amp;#39;&amp;#63;Type&amp;#61;Public&amp;#39;&amp;#43;&amp;#39;&amp;#38;&amp;#35;38&amp;#59;ID&amp;#61;181134001822&amp;#39;&amp;#41;&amp;#59;&amp;#34;&amp;#62;BATTLE GROUND MIDDLE SCHOOL&amp;#60;&amp;#47;a&amp;#62;&amp;#60;br &amp;#47;&amp;#62;6100 N 50 W, WEST LAFAYETTE, IN 47906&amp;#60;br &amp;#47;&amp;#62;&amp;#40;765&amp;#41; 269-8140&amp;#38;nbsp&amp;#59;&amp;#38;nbsp&amp;#59;-&amp;#38;nbsp&amp;#59;&amp;#38;nbsp&amp;#59;&amp;#60;i&amp;#62;TIPPECANOE COUNTY COUNTY&amp;#60;&amp;#47;i&amp;#62;&amp;#60;&amp;#47;td&amp;#62;&amp;#60;td class&amp;#61;&amp;#34;InstDetail&amp;#34;&amp;#62;grades&amp;#58; &amp;#60;strong&amp;#62;6&amp;#60;&amp;#47;strong&amp;#62; - &amp;#60;strong&amp;#62;8&amp;#60;&amp;#47;strong&amp;#62;&amp;#60;&amp;#47;td&amp;#62;&amp;#10;&amp;#10;&amp;#10;So when the user selects Battle Ground as school, my program should be able to figure out the ID 181134001822 from above html.</description><author>maudish</author><pubDate>Sun, 01 Apr 2012 01:14:00 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120401011400A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C23145</link><description>How to find the ID value of a particular value&amp;#63; e.g. Below is the string I obtain from a website and when the user selects a particular school from a list of schools, the ID of that school is to be captured for further processing. The part of html tag I need to look at is given below&amp;#58;&amp;#10;&amp;#10;&amp;#10;&amp;#60;td class&amp;#61;&amp;#34;Miles&amp;#34;&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;td&amp;#62;&amp;#60;td CLASS&amp;#61;&amp;#34;InstDesc&amp;#34;&amp;#62;&amp;#60;A href&amp;#61;&amp;#34;JavaScript&amp;#58;MoreInfo&amp;#40;&amp;#39;sch_info_popup.asp&amp;#39;&amp;#43;&amp;#39;&amp;#63;Type&amp;#61;Public&amp;#39;&amp;#43;&amp;#39;&amp;#38;&amp;#35;38&amp;#59;ID&amp;#61;181134001822&amp;#39;&amp;#41;&amp;#59;&amp;#34;&amp;#62;BATTLE GROUND MIDDLE SCHOOL&amp;#60;&amp;#47;a&amp;#62;&amp;#60;br &amp;#47;&amp;#62;6100 N 50 W, WEST LAFAYETTE, IN 47906&amp;#60;br &amp;#47;&amp;#62;&amp;#40;765&amp;#41; 269-8140&amp;#38;nbsp&amp;#59;&amp;#38;nbsp&amp;#59;-&amp;#38;nbsp&amp;#59;&amp;#38;nbsp&amp;#59;&amp;#60;i&amp;#62;TIPPECANOE COUNTY COUNTY&amp;#60;&amp;#47;i&amp;#62;&amp;#60;&amp;#47;td&amp;#62;&amp;#60;td class&amp;#61;&amp;#34;InstDetail&amp;#34;&amp;#62;grades&amp;#58; &amp;#60;strong&amp;#62;6&amp;#60;&amp;#47;strong&amp;#62; - &amp;#60;strong&amp;#62;8&amp;#60;&amp;#47;strong&amp;#62;&amp;#60;&amp;#47;td&amp;#62;</description><author>maudish</author><pubDate>Sun, 01 Apr 2012 01:13:07 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20120401011307A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C21841</link><description>This looks like a great tool, but I REALLY wish that you had a tutorial in vb.net that would help teach us how to properly use it&amp;#33;</description><author>renegade809</author><pubDate>Thu, 08 Dec 2011 21:14:31 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20111208091431P</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C21202</link><description>Also it is not working with following code&amp;#10;&amp;#10;        static void Main&amp;#40;string&amp;#91;&amp;#93; args&amp;#41;&amp;#10;        &amp;#123;&amp;#10;            HtmlAgilityPack.HtmlWeb web &amp;#61; new HtmlWeb&amp;#40;&amp;#41;&amp;#59;&amp;#10;            HtmlAgilityPack.HtmlDocument doc &amp;#61; web.Load&amp;#40;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.google.com&amp;#34;&amp;#41;&amp;#59;&amp;#10;            &amp;#47;&amp;#47;doc.DocumentNode.SelectSingleNode&amp;#40;&amp;#34;&amp;#47;&amp;#47;&amp;#42;&amp;#91;&amp;#64;id&amp;#61;&amp;#92;&amp;#34;lst-ib&amp;#92;&amp;#34;&amp;#93;&amp;#34;&amp;#41;&amp;#59;&amp;#47;&amp;#47;&amp;#40;&amp;#34;&amp;#47;html&amp;#47;body&amp;#47;div&amp;#91;2&amp;#93;&amp;#47;form&amp;#47;div&amp;#47;div&amp;#91;2&amp;#93;&amp;#47;table&amp;#47;tbody&amp;#47;tr&amp;#47;td&amp;#47;table&amp;#47;tbody&amp;#47;tr&amp;#47;td&amp;#47;div&amp;#47;table&amp;#47;tbody&amp;#47;tr&amp;#47;td&amp;#47;table&amp;#47;tbody&amp;#47;tr&amp;#47;td&amp;#91;2&amp;#93;&amp;#47;div&amp;#47;input&amp;#34;&amp;#41;&amp;#59;&amp;#10;            &amp;#47;&amp;#47;System.Console.WriteLine&amp;#40;doc.DocumentNode.SelectSingleNode&amp;#40;&amp;#34;&amp;#47;&amp;#47;&amp;#42;&amp;#91;&amp;#64;id&amp;#61;&amp;#92;&amp;#34;lst-ib&amp;#92;&amp;#34;&amp;#93;&amp;#34;&amp;#41;.Id&amp;#41;&amp;#59;&amp;#10;            foreach &amp;#40;HtmlNode link in doc.DocumentNode.SelectNodes&amp;#40;&amp;#34;&amp;#47;html&amp;#47;body&amp;#47;div&amp;#91;2&amp;#93;&amp;#47;form&amp;#47;div&amp;#34;&amp;#41;&amp;#41;&amp;#10;            &amp;#123;&amp;#10;                HtmlAttribute att &amp;#61; link.Attributes&amp;#91;&amp;#34;id&amp;#34;&amp;#93;&amp;#59;&amp;#10;&amp;#10;                System.Console.Write&amp;#40;att.Value&amp;#41;&amp;#59;&amp;#10;&amp;#10;            &amp;#125;&amp;#10;            System.Console.ReadKey&amp;#40;&amp;#41;&amp;#59;&amp;#10;&amp;#10;        &amp;#125;</description><author>uppadhyayraj</author><pubDate>Mon, 10 Oct 2011 06:34:31 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20111010063431A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C21201</link><description>Not able to get result from Xpath containing second element or attribute value, please provide the way to do this. Following is my code&amp;#10;        static void Main&amp;#40;string&amp;#91;&amp;#93; args&amp;#41;&amp;#10;        &amp;#123;&amp;#10;            HtmlAgilityPack.HtmlWeb web &amp;#61; new HtmlWeb&amp;#40;&amp;#41;&amp;#59;&amp;#10;            HtmlAgilityPack.HtmlDocument doc &amp;#61; web.Load&amp;#40;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;www.google.com&amp;#34;&amp;#41;&amp;#59;&amp;#10;            &amp;#47;&amp;#47;System.Console.WriteLine&amp;#40;doc.DocumentNode.SelectSingleNode&amp;#40;&amp;#34;&amp;#47;&amp;#47;&amp;#42;&amp;#91;&amp;#64;id&amp;#61;&amp;#92;&amp;#34;lst-ib&amp;#92;&amp;#34;&amp;#93;&amp;#34;&amp;#41;.Id&amp;#41;&amp;#59;  &amp;#47;&amp;#47;This is not working as well&amp;#10;            foreach &amp;#40;HtmlNode link in doc.DocumentNode.SelectNodes&amp;#40;&amp;#34;&amp;#47;&amp;#47;&amp;#42;&amp;#91;&amp;#64;id&amp;#61;&amp;#92;&amp;#34;gbw&amp;#92;&amp;#34;&amp;#93;&amp;#34;&amp;#41;&amp;#41;&amp;#10;            &amp;#123;&amp;#10;                HtmlAttribute att &amp;#61; link.Attributes&amp;#91;&amp;#34;id&amp;#34;&amp;#93;&amp;#59;&amp;#10;&amp;#10;                System.Console.Write&amp;#40;att.Value&amp;#41;&amp;#59;&amp;#10;&amp;#10;            &amp;#125;&amp;#10;            System.Console.ReadKey&amp;#40;&amp;#41;&amp;#59;&amp;#10;&amp;#10;&amp;#10;        &amp;#125;</description><author>uppadhyayraj</author><pubDate>Mon, 10 Oct 2011 06:27:55 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20111010062755A</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C19279</link><description>&amp;#64;lennymail, xpath doesn&amp;#39;t need a selector on each level - what you&amp;#39;re after is the descendent axis. This is represented by two slashes &amp;#40;&amp;#34;&amp;#47;&amp;#47;&amp;#34;&amp;#41;. For example to get all form tags below body, you could use&amp;#58; &amp;#47;html&amp;#47;body&amp;#47;&amp;#47;form - or, equally&amp;#58; &amp;#47;&amp;#47;form.&amp;#10;&amp;#10;XPath is actually well suited to the task once you understand it. That said, the Sizzle engine is better adapted to HTML specifically rather than being a general XML solution.</description><author>teljj001</author><pubDate>Thu, 14 Apr 2011 22:49:05 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20110414104905P</guid></item><item><title>New Comment on "Examples"</title><link>http://htmlagilitypack.codeplex.com/wikipage?title=Examples&amp;ANCHOR#C19033</link><description>The issue of the documentation not displaying in the HtmlAgilityPack.Documentation.chm is that the CHM file contains JavaScript code. Windows 7 blocks code that has been downloaded from the web.&amp;#10;&amp;#10;To make the CHM file function correctly you need to right-click on the file and choose the &amp;#34;Properties&amp;#34; command.  In the &amp;#34;Properties&amp;#34; dialog box, at the bottom of the &amp;#34;General&amp;#34; tab, click the &amp;#34;Unblock&amp;#34; button. &amp;#10;That should fix the problem.</description><author>JoeO</author><pubDate>Thu, 24 Mar 2011 17:01:37 GMT</pubDate><guid isPermaLink="false">New Comment on "Examples" 20110324050137P</guid></item></channel></rss>