<?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: C#: WebClient Usage</title>
	<atom:link href="http://www.daveamenta.com/2008-05/c-webclient-usage/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daveamenta.com/2008-05/c-webclient-usage/</link>
	<description>Indisposable By Default</description>
	<lastBuildDate>Tue, 20 Jul 2010 05:10:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Using WebClient with UploadValues and UploadString to simulate POST &#171; Anhonga&#39;s Blog</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-7488</link>
		<dc:creator>Using WebClient with UploadValues and UploadString to simulate POST &#171; Anhonga&#39;s Blog</dc:creator>
		<pubDate>Fri, 07 May 2010 21:29:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-7488</guid>
		<description>[...] concise description of WebClient can be found here.    Leave a [...]</description>
		<content:encoded><![CDATA[<p>[...] concise description of WebClient can be found here.    Leave a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chakri</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-7231</link>
		<dc:creator>Chakri</dc:creator>
		<pubDate>Sun, 28 Mar 2010 08:55:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-7231</guid>
		<description>When i use &quot;DownloadStringCompleted&quot;, i for Login page. HOw can i extend the authentication from current request to web client&#039;s request?

Thanks in advance!</description>
		<content:encoded><![CDATA[<p>When i use &#8220;DownloadStringCompleted&#8221;, i for Login page. HOw can i extend the authentication from current request to web client&#8217;s request?</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cesar</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-7173</link>
		<dc:creator>cesar</dc:creator>
		<pubDate>Thu, 25 Mar 2010 17:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-7173</guid>
		<description>Man how I can get the file name uploaded or something like that, for example I want show: 
xxxx uploaded. I want that the user know how file was complete</description>
		<content:encoded><![CDATA[<p>Man how I can get the file name uploaded or something like that, for example I want show:<br />
xxxx uploaded. I want that the user know how file was complete</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derrick</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-6961</link>
		<dc:creator>Derrick</dc:creator>
		<pubDate>Thu, 11 Mar 2010 13:43:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-6961</guid>
		<description>Very good examples here!</description>
		<content:encoded><![CDATA[<p>Very good examples here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milan</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-5680</link>
		<dc:creator>Milan</dc:creator>
		<pubDate>Tue, 15 Dec 2009 04:27:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-5680</guid>
		<description>Hi, can we add cookie handling in webclient, if yes then how?

please can you provide some links.</description>
		<content:encoded><![CDATA[<p>Hi, can we add cookie handling in webclient, if yes then how?</p>
<p>please can you provide some links.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mistdewfire</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-4377</link>
		<dc:creator>mistdewfire</dc:creator>
		<pubDate>Wed, 29 Jul 2009 19:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-4377</guid>
		<description>Hi , i need to login to a website say login.aspx and then access next page say HOMEPAGE.aspx using webclient. 
I provide username and password like:

byte[] bret = client.UploadData(&quot;http://www.website.com/login.aspx&quot;, &quot;POST&quot;,
                System.Text.Encoding.ASCII.GetBytes(&quot;tbxUserName=UserName&amp;tbxPassword=Password&quot;) );

            string sret = System.Text.Encoding.ASCII.GetString(bret);

But sret contains only html of Login.aspx. I want the html of the page that i go to after clicking SUBMIT button on login page. So how to click submit button using webclient and get information about successful login to website.</description>
		<content:encoded><![CDATA[<p>Hi , i need to login to a website say login.aspx and then access next page say HOMEPAGE.aspx using webclient.<br />
I provide username and password like:</p>
<p>byte[] bret = client.UploadData(&#8220;http://www.website.com/login.aspx&#8221;, &#8220;POST&#8221;,<br />
                System.Text.Encoding.ASCII.GetBytes(&#8220;tbxUserName=UserName&amp;tbxPassword=Password&#8221;) );</p>
<p>            string sret = System.Text.Encoding.ASCII.GetString(bret);</p>
<p>But sret contains only html of Login.aspx. I want the html of the page that i go to after clicking SUBMIT button on login page. So how to click submit button using webclient and get information about successful login to website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kimbin</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-912</link>
		<dc:creator>kimbin</dc:creator>
		<pubDate>Mon, 23 Mar 2009 14:09:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-912</guid>
		<description>thanks</description>
		<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kimbin</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-911</link>
		<dc:creator>kimbin</dc:creator>
		<pubDate>Mon, 23 Mar 2009 14:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-911</guid>
		<description>thank you for your help</description>
		<content:encoded><![CDATA[<p>thank you for your help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yoann. B</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-438</link>
		<dc:creator>Yoann. B</dc:creator>
		<pubDate>Fri, 05 Dec 2008 01:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-438</guid>
		<description>Great Post !

Thanks.</description>
		<content:encoded><![CDATA[<p>Great Post !</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WebClient usage - Baka.Blog</title>
		<link>http://www.daveamenta.com/2008-05/c-webclient-usage/comment-page-1/#comment-436</link>
		<dc:creator>WebClient usage - Baka.Blog</dc:creator>
		<pubDate>Thu, 04 Dec 2008 10:06:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveamenta.com/?p=45#comment-436</guid>
		<description>[...] http://www.daveamenta.com/2008-05/c-webclient-usage/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.daveamenta.com/2008-05/c-webclient-usage/" rel="nofollow">http://www.daveamenta.com/2008-05/c-webclient-usage/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
