<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DevtheWeb.NET&#039;s Blog &#187; asp.net</title>
	<atom:link href="http://www.devtheweb.net/blog/tag/asp-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devtheweb.net/blog</link>
	<description>for Those Who Develop Something on the Web</description>
	<lastBuildDate>Fri, 27 Aug 2010 07:28:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Does asp.net login control encrypt password field?</title>
		<link>http://www.devtheweb.net/blog/2010/02/27/does-asp-net-login-control-encrypt-password-field/</link>
		<comments>http://www.devtheweb.net/blog/2010/02/27/does-asp-net-login-control-encrypt-password-field/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 12:20:58 +0000</pubDate>
		<dc:creator>tihomir_wwf</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=1102</guid>
		<description><![CDATA[The asp.net login control is often used when we build an asp.net website with asp.net authentication providers. But when we think about the security, it&#8217;s good to know that when the security is important, you cannot rely on it in the HTTP protocol. The reason is that all the fields of the asp.net login control [...]]]></description>
		<wfw:commentRss>http://www.devtheweb.net/blog/2010/02/27/does-asp-net-login-control-encrypt-password-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Rotating Ad Script in ASP.NET</title>
		<link>http://www.devtheweb.net/blog/2010/02/19/simple-rotating-ad-script-in-asp-net/</link>
		<comments>http://www.devtheweb.net/blog/2010/02/19/simple-rotating-ad-script-in-asp-net/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 08:34:24 +0000</pubDate>
		<dc:creator>tihomir_wwf</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=901</guid>
		<description><![CDATA[In the home page, you can see &#8216;Your Ad Here&#8217; image. If you go to another page, you&#8217;ll see another &#8216;Your Ad Here&#8217; image. Here&#8217;s an example of rotating ad banners that you can use in your asp.net website: 1. You&#8217;ll need a folder in you web server with all the image ads in it. [...]]]></description>
		<wfw:commentRss>http://www.devtheweb.net/blog/2010/02/19/simple-rotating-ad-script-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export Textbox&#8217;s text to a file using asp.net</title>
		<link>http://www.devtheweb.net/blog/2010/02/06/export-textboxs-text-to-a-file-using-asp-net/</link>
		<comments>http://www.devtheweb.net/blog/2010/02/06/export-textboxs-text-to-a-file-using-asp-net/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 10:31:28 +0000</pubDate>
		<dc:creator>tihomir_wwf</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=872</guid>
		<description><![CDATA[In the Reduce Code Size Tool, I wanted to add ability for the users to be able to export the Output TextBox&#8217;s Text into file. It can be done dynamically, without need to create a temp file into the server. Here&#8217;s an asp.net example how it can be done: Response.Clear(); Response.AddHeader(&#8220;Content-Type&#8221;, &#8220;application/html&#8221;); Response.AddHeader(&#8220;Content-Disposition&#8221;, &#8220;attachment; filename=&#8221; [...]]]></description>
		<wfw:commentRss>http://www.devtheweb.net/blog/2010/02/06/export-textboxs-text-to-a-file-using-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Integrate PayPal Donate Button into ASP.NET Page</title>
		<link>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/</link>
		<comments>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 08:48:17 +0000</pubDate>
		<dc:creator>tihomir_wwf</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[paypal]]></category>

		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=680</guid>
		<description><![CDATA[I&#8217;ve recently decided to add PayPal Donate Button in the current site. The generated code for the donate button was: &#60;form action=&#8221;https://www.paypal.com/cgi-bin/webscr&#8221; method=&#8221;post&#8221;&#62; &#60;input type=&#8221;hidden&#8221; name=&#8221;cmd&#8221; value=&#8221;_s-xclick&#8221; /&#62; &#60;input type=&#8221;hidden&#8221; name=&#8221;hosted_button_id&#8221; value=&#8221;11271506&#8243; /&#62; &#60;input type=&#8221;image&#8221; src=&#8221;https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif&#8221; border=&#8221;0&#8243; name=&#8221;submit&#8221; alt=&#8221;PayPal &#8211; The safer, easier way to pay online!&#8221; /&#62; &#60;img alt=&#8221;" border=&#8221;0&#8243; src=&#8221;https://www.paypal.com/en_US/i/scr/pixel.gif&#8221; width=&#8221;1&#8243; height=&#8221;1&#8243; /&#62; [...]]]></description>
		<wfw:commentRss>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>8 Advantages of ASP.NET over PHP</title>
		<link>http://www.devtheweb.net/blog/2009/08/25/8-advantages-of-asp-net-over-php/</link>
		<comments>http://www.devtheweb.net/blog/2009/08/25/8-advantages-of-asp-net-over-php/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 14:06:09 +0000</pubDate>
		<dc:creator>tihomir_wwf</dc:creator>
				<category><![CDATA[asp.net]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://dev-the-web.com/blog/?p=120</guid>
		<description><![CDATA[1. The code-behind allows you easier to maintain the code when it comes to large websites. 2. You have the freedom of choosing from multiple languages (C#, VB.NET, C++, etc.) 3. SQL Server is also very fast, secure, and it can store extremely large amounts of data; actually, there&#8217;s no limit; 4. With ASP.NET you [...]]]></description>
		<wfw:commentRss>http://www.devtheweb.net/blog/2009/08/25/8-advantages-of-asp-net-over-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
