<?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>steckle.com :: my corner of the web &#187; ASP</title>
	<atom:link href="http://www.steckle.com/category/asp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.steckle.com</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 06:27:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Output Sessions</title>
		<link>http://www.steckle.com/2011/05/16/output-sessions/</link>
		<comments>http://www.steckle.com/2011/05/16/output-sessions/#comments</comments>
		<pubDate>Mon, 16 May 2011 18:31:10 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Code Examples]]></category>

		<guid isPermaLink="false">http://www.steckle.com/?p=487</guid>
		<description><![CDATA[Another piece of ASP code I use quite often at work... &#60;% on error resume next dim i for each i in session.contents response.write( i &#38; " = " &#38; session(i) &#38; "&#60;br /&#62;") next %&#62;]]></description>
			<content:encoded><![CDATA[<p>Another piece of ASP code I use quite often at work...</p>
<p><code>&lt;%<br />
on error resume next<br />
dim i<br />
for each i in session.contents<br />
  response.write( i &amp; " = " &amp; session(i) &amp; "&lt;br /&gt;")<br />
next<br />
%&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.steckle.com/2011/05/16/output-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just testing a plugin&#8230;</title>
		<link>http://www.steckle.com/2008/08/05/just-testing-a-plugin/</link>
		<comments>http://www.steckle.com/2008/08/05/just-testing-a-plugin/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 14:37:02 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Code Examples]]></category>

		<guid isPermaLink="false">http://www.steckle.com/?p=140</guid>
		<description><![CDATA[I found this great plugin Code Markup that allows for easy posting of code examples. So here's an example of ASP code to show a different greeting depending on the time of day. &#60;% Dim dHour dHour = Hour(Now) If dHour &#60; 12 Then Response.Write "Good morning" ElseIf dHour &#60; 17 Then Response.Write "Good afternoon" Else Response.Write [...]]]></description>
			<content:encoded><![CDATA[<p>I found this great plugin <a href="http://www.thunderguy.com/semicolon/wordpress/code-markup-wordpress-plugin/">Code Markup</a> that allows for easy posting of code examples. So here's an example of ASP code to show a different greeting depending on the time of day.</p>
<p><code>&lt;%<br />
Dim dHour<br />
dHour = Hour(Now)</p>
<p>If dHour &lt; 12 Then<br />
	Response.Write "Good morning"<br />
ElseIf dHour &lt; 17 Then<br />
	Response.Write "Good afternoon"<br />
Else<br />
	Response.Write "Good evening"<br />
End If<br />
%&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.steckle.com/2008/08/05/just-testing-a-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

