<?xml version="1.0" ?>
<?xml-stylesheet type="text/xsl" href="/rss/rss.xsl"?>
<rss version="2.0">
	<channel>
	<title>ASP 101 News</title>
	<link>http://www.asp101.com/</link>
	<description>The latest news from ASP 101.  The place Active Server Pages and ASP.NET developers go!</description>
	<language>en-us</language>
	<copyright>Copyright 2007 Jupitermedia Corporation All Rights Reserved.</copyright>
	<managingEditor>john@asp101.com</managingEditor>
	<webMaster>webmaster@asp101.com</webMaster>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<item>
		<title>Visual Studio 2008 SP1 and .NET Framework 3.5 SP1</title>
		<link>http://www.asp101.com/articles/pr/080826VS2008SP1.asp</link>
		<description>
		&lt;p&gt;
		After a healthy run in beta, Microsoft has finally released both Visual Studio 2008 Service Pack 1 and .NET Framework 3.5 Service Pack 1.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 26 Aug 2008 00:00:00 GMT</pubDate>
		<category>Press Releases</category>
	</item>
	<item>
		<title>Case-Insensitive Usernames and Passwords</title>
		<link>http://www.asp101.com/samples/faq/faq_login.asp</link>
		<description>
		&lt;p&gt;
		Our login and password sample code has always been case-sensitive.  While we don't really recommend it, if you must make your usernames and/or passwords case-insensitive, it's actually quite easy to do.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 19 Aug 2008 00:00:00 GMT</pubDate>
		<category>FAQs</category>
	</item>
	<item>
		<title>How To List The Tables In A Database</title>
		<link>http://www.asp101.com/tips/index.asp?id=158</link>
		<description>
		&lt;p&gt;
		While developers are usually interested in accessing the data contained within a database's tables, occasionally you need to know something about the tables themselves. It's at these times when this quick ASP.NET tip might come in handy.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 12 Aug 2008 00:00:00 GMT</pubDate>
		<category>Quick Tips</category>
	</item>
	<item>
		<title>Form ViewState ASP.NET Sample Code</title>
		<link>http://www.asp101.com/samples/form_viewstate_aspx.asp</link>
		<description>
		&lt;p&gt;
		This sample illustrates how ASP.NET handles the problem of maintaining a Web form's ViewState for you automatically. As such, the actual code involved is not that exciting, but the fact that it does all the work for you should excite you some.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 5 Aug 2008 00:00:00 GMT</pubDate>
		<category>Samples</category>
	</item>
	<item>
		<title>Name Your Development Sites</title>
		<link>http://www.asp101.com/tips/index.asp?id=157</link>
		<description>
		&lt;p&gt;
		Do you ever get sick of trying to remember the IP address to the local development version of a site you're working on?  Here's a little tip that might help.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 29 Jul 2008 00:00:00 GMT</pubDate>
		<category>Quick Tips</category>
	</item>
	<item>
		<title>Installing IIS on Windows Vista Home Premium</title>
		<link>http://www.asp101.com/tips/index.asp?id=156</link>
		<description>
		&lt;p&gt;
		While you may expect to be able to install IIS 7.0 on Windows Vista Business and Vista Ultimate, you might be surprised to learn that you can also install IIS 7.0 on Windows Vista Home Premium.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 22 Jul 2008 00:00:00 GMT</pubDate>
		<category>Quick Tips</category>
	</item>
	<item>
		<title>Sending Email to Multiple Users with the Tell a Friend Sample</title>
		<link>http://www.asp101.com/samples/faq/faq_tell_a_friend.asp</link>
		<description>
		&lt;p&gt;
		Based on your requests, this week we explain how to modify our Tell a Friend sample so that it allows users to enter multiple, comma-separated email addresses.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 15 Jul 2008 00:00:00 GMT</pubDate>
		<category>FAQs</category>
	</item>
	<item>
		<title>Leaving Scripts and Styles Inline</title>
		<link>http://www.asp101.com/tips/index.asp?id=155</link>
		<description>
		&lt;p&gt;
		When deciding if you should leave a Web page's JavaScript and styles inline or move them to a separate linked .js or .css file, there are a few different factors to consider.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 8 Jul 2008 00:00:00 GMT</pubDate>
		<category>Quick Tips</category>
	</item>
	<item>
		<title>Move Settings Out of the Web.config File</title>
		<link>http://www.asp101.com/tips/index.asp?id=154</link>
		<description>
		&lt;p&gt;
		Did you know that you can move sections of your Web.config file into other files?  Whether it's to keep things tidy or simply to make it easier to find the settings you change often, it's easy to do and yet few people even realize you can.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 1 Jul 2008 00:00:00 GMT</pubDate>
		<category>Quick Tips</category>
	</item>
	<item>
		<title>Use the Same Event Handler for Multiple Objects</title>
		<link>http://www.asp101.com/tips/index.asp?id=153</link>
		<description>
		&lt;p&gt;
		As a developer, repetitive code is your enemy.  It takes longer to write, leads to larger files, and is harder to maintain.  Which brings me to the point of this tip.  Did you know that you can tie the same event handler to multiple objects?  It's easy to do, but most people never think to try it.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 24 Jun 2008 00:00:00 GMT</pubDate>
		<category>Quick Tips</category>
	</item>
	<item>
		<title>Checkbox to Database Sample</title>
		<link>http://www.asp101.com/samples/checkbox2db.asp</link>
		<description>
		&lt;p&gt;
		This sample builds upon our original Checkbox sample by showing you how to
		display boolean data as a checkbox and then how to save the state of that
		checkbox back to a database.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 17 Jun 2008 00:00:00 GMT</pubDate>
		<category>Samples</category>
	</item>
	<item>
		<title>How To Calculate Age</title>
		<link>http://www.asp101.com/tips/index.asp?id=152</link>
		<description>
		&lt;p&gt;
		Determining a person's age given their date of birth seems simple enough, but I get a lot of email from people who can't seem to get the code working as it should.
		&lt;/p&gt;
		</description>
		<pubDate>Tue, 10 Jun 2008 00:00:00 GMT</pubDate>
		<category>Quick Tips</category>
	</item>
	</channel>
</rss>
