<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: A simple web crawler in C# using HtmlAgilityPack</title>
	<atom:link href="http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/</link>
	<description>Living in the World&#039;s Smartest House</description>
	<lastBuildDate>Wed, 28 Dec 2011 13:30:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Ian Mercer</title>
		<link>http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/#comment-1242</link>
		<dc:creator>Ian Mercer</dc:creator>
		<pubDate>Sun, 28 Aug 2011 00:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.abodit.com/?p=595#comment-1242</guid>
		<description>By using WebRequest you can get more control over the process, e.g. checking the mime type first, or handling redirects (not shown here).</description>
		<content:encoded><![CDATA[<p>By using WebRequest you can get more control over the process, e.g. checking the mime type first, or handling redirects (not shown here).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sagar</title>
		<link>http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/#comment-1239</link>
		<dc:creator>Sagar</dc:creator>
		<pubDate>Sat, 27 Aug 2011 10:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.abodit.com/?p=595#comment-1239</guid>
		<description>Hi i used the HTML agility Pack&#039;s method to get the HtmlDocument instead of WebRequest. 

Is there any difference in these two approaches 

I used:

HtmlWeb web = new HtmlWeb();
doc=web.Load(urlRoot.AbsolutePath);</description>
		<content:encoded><![CDATA[<p>Hi i used the HTML agility Pack&#8217;s method to get the HtmlDocument instead of WebRequest. </p>
<p>Is there any difference in these two approaches </p>
<p>I used:</p>
<p>HtmlWeb web = new HtmlWeb();<br />
doc=web.Load(urlRoot.AbsolutePath);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seb</title>
		<link>http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/#comment-1153</link>
		<dc:creator>Seb</dc:creator>
		<pubDate>Sun, 19 Jun 2011 09:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.abodit.com/?p=595#comment-1153</guid>
		<description>Ahh, excellent! Here I was thinking C# didn&#039;t have anything like that... I should have googled. Thanks a bunch! XD</description>
		<content:encoded><![CDATA[<p>Ahh, excellent! Here I was thinking C# didn&#8217;t have anything like that&#8230; I should have googled. Thanks a bunch! XD</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/#comment-1132</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Mon, 30 May 2011 18:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.abodit.com/?p=595#comment-1132</guid>
		<description>WebRequest is in System.Net.  See http://msdn.microsoft.com/en-us/library/bw00b1dc.aspx</description>
		<content:encoded><![CDATA[<p>WebRequest is in System.Net.  See <a href="http://msdn.microsoft.com/en-us/library/bw00b1dc.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bw00b1dc.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seb</title>
		<link>http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/#comment-1131</link>
		<dc:creator>Seb</dc:creator>
		<pubDate>Mon, 30 May 2011 14:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.abodit.com/?p=595#comment-1131</guid>
		<description>HttpWebRequest oReq = (HttpWebRequest)WebRequest.Create(url);

Where is WebRequest defined?</description>
		<content:encoded><![CDATA[<p>HttpWebRequest oReq = (HttpWebRequest)WebRequest.Create(url);</p>
<p>Where is WebRequest defined?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernd</title>
		<link>http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/#comment-729</link>
		<dc:creator>Bernd</dc:creator>
		<pubDate>Thu, 07 Oct 2010 12:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.abodit.com/?p=595#comment-729</guid>
		<description>It looks like the solution I am searching for.
But I did not understand, how to call the class from my code. 
Can you give me an example?

Thank you in advance,
Bernd</description>
		<content:encoded><![CDATA[<p>It looks like the solution I am searching for.<br />
But I did not understand, how to call the class from my code.<br />
Can you give me an example?</p>
<p>Thank you in advance,<br />
Bernd</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vofoutligsits</title>
		<link>http://blog.abodit.com/2010/03/a-simple-web-crawler-in-c-using-htmlagilitypack/#comment-632</link>
		<dc:creator>vofoutligsits</dc:creator>
		<pubDate>Mon, 02 Aug 2010 13:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.abodit.com/?p=595#comment-632</guid>
		<description>I would like to post some of your ideas in my blog. Can I ,please take them?</description>
		<content:encoded><![CDATA[<p>I would like to post some of your ideas in my blog. Can I ,please take them?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.149 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-07 05:45:46 -->

