<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>TEMPESTINI.NET</title>
	<atom:link href="http://tempestini.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://tempestini.net</link>
	<description>Observations in Software Development</description>
	<lastBuildDate>Mon, 19 Oct 2009 18:09:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tempestini.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/e8f30f773b942d615301e2f47e1b2422?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>TEMPESTINI.NET</title>
		<link>http://tempestini.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tempestini.net/osd.xml" title="TEMPESTINI.NET" />
	<atom:link rel='hub' href='http://tempestini.net/?pushpress=hub'/>
		<item>
		<title>Passing Values on the Tag Attribute</title>
		<link>http://tempestini.net/2009/05/31/passing-values-on-the-tag-attribute/</link>
		<comments>http://tempestini.net/2009/05/31/passing-values-on-the-tag-attribute/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 00:31:20 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[iPhone Development]]></category>

		<guid isPermaLink="false">http://tempestini.net/?p=300</guid>
		<description><![CDATA[I&#8217;m learning to develop in XCode for the iPhone.  Being a long time Microsoft developer I admittedly struggle with some of the most simple things in this new XCode/Objective-C world.  One of my recent struggles was when I  attempted to assign several controls in Interface Builder (or, IB for short) unique Tag attributes and then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=300&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m learning to develop in XCode for the iPhone.  Being a long time Microsoft developer I admittedly struggle with some of the most simple things in this new XCode/Objective-C world.  One of my recent struggles was when I  attempted to assign several controls in Interface Builder (or, IB for short) unique Tag attributes and then read them in the IBAction method.  I searched far and wide and finally found the answer.</p>
<p>In my scenario, I had several buttons in my View that I wanted to handle with a single method.  I needed to find a way to differentiate between them to find out which one the user clicked.</p>
<p><strong>Solution: </strong></p>
<p>In IB I created three buttons as shown below.  I then selected each one separately and assigned it a unique &#8216;Tag&#8217; attribute.  The &#8216;Tag&#8217; attribute is located on the &#8216;Button Attributes&#8217; tab of the Inspector.</p>
<p><img class="alignnone size-full wp-image-302" title="TagExample" src="http://vbasp.files.wordpress.com/2009/05/tagexample1.jpg?w=614&#038;h=792" alt="TagExample" width="614" height="792" /></p>
<p>That part wasn&#8217;t much of a challenge.  What, unfortunately, was a challenge was getting this value from within the IBAction method.  First, the action method is declared in my ViewController.h file like any other IBAction method:</p>
<pre>#import <span style="color:#ff0000;">&lt;UIKit/UIKit.h&gt;</span>

<span style="color:#cc99ff;">@interface</span> ViewController : UIViewController {
}

- (<span style="color:#cc99ff;">IBAction</span>)push:(<span style="color:#cc99ff;">id</span>)sender;

<span style="color:#cc99ff;">@end</span></pre>
<p>Next, the important part.  I had to find a way to get the actual value in my push method.  After several unsuccessful variations of trying to call [sender tag] directly, I found the answer (shown in bold below):</p>
<pre>@implementation ViewController

- (<span style="color:#cc99ff;">IBAction</span>)push:(<span style="color:#cc99ff;">id</span>)sender
{
<strong> UIButton *btn = (UIButton *)sender;
 NSInteger tag = [btn tag];</strong>
 NSLog(<span style="color:#cc99ff;">@"Tag: %d"</span>, tag);</pre>
<p>The answer is actually very simple.  Since sender is a generic object type I had to cast it to a UIButton before I could get to the tag property.</p>
<p>Stay tuned.  At this rate there are many more of these quick samples on the way&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/300/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=300&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2009/05/31/passing-values-on-the-tag-attribute/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>

		<media:content url="http://vbasp.files.wordpress.com/2009/05/tagexample1.jpg" medium="image">
			<media:title type="html">TagExample</media:title>
		</media:content>
	</item>
		<item>
		<title>Is Further Specialization Needed?</title>
		<link>http://tempestini.net/2008/12/10/is-further-specialization-needed/</link>
		<comments>http://tempestini.net/2008/12/10/is-further-specialization-needed/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 02:49:39 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://tempestini.net/?p=272</guid>
		<description><![CDATA[In our group we have always recruited &#8220;developers&#8221;.  Is this wrong?  Maybe in the past it wasn&#8217;t, but today?  Could be.  Here is what we are currently expecting all of our developers to be experts in: ASP.NET, JQuery, HTML, CSS, JavaScript, XML, LINQ, NUnit, Castle ActiveRecord, NHibernate, HQL, T-SQL, PL/SQL, Data Modeling, Stored Procedures, AJAX, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=272&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>In our group we have always recruited &#8220;developers&#8221;.  Is this wrong?  Maybe in the past it wasn&#8217;t, but today?  Could be.  Here is what we are currently expecting all of our developers to be experts in:</p>
<p><em>ASP.NET, JQuery, HTML, CSS, JavaScript, XML, LINQ, NUnit, Castle ActiveRecord, NHibernate, HQL, T-SQL, PL/SQL, Data Modeling, Stored Procedures, AJAX, Log4Net, Usability, and more.<br />
</em></p>
<p>Is it time to further specialize developers?  You bet.  Offshore, onshore, it doesn&#8217;t matter.  How can we realistically expect our entire development team to be &#8220;experts&#8221; in all the technology above and still deliver projects successfully?  I, for one, feel more comfortable writing &#8220;back-end&#8221; code such as business logic, SQL, etc. and I&#8217;m sure there are others like me out there.  I am nowhere near as strong a developer in client-side development (Javascript, AJAX, JQuery, etc.) and making pages look exactly like the prototype that was handed to me.</p>
<p>So, here is what I propose going forward.  We begin to evaluate our developer pools in a different ways than we have in the past.  In the past, we&#8217;ve interviewed candidates to find out which one could answer the most amount of questions in all the technologies listed above.  The one that could hold her own in the most areas won and was awarded a long-term contract where she had to keep her skills up in all these areas and more.  Over the past several years this hasn&#8217;t worked as well as it could so we are about to change it.  We are now going to reevaluate our talent and find out strengths, weaknesses, and areas of interest.  (Yes, you must find out where developers are interested too because these are the areas where they will probably be most successful).  We are going to separate them as shown below:</p>
<p><em>Front-end Developers:</em><br />
ASP.NET, AJAX, JQuery, HTML, CSS, Javascript, Usability</p>
<p><em>Back-end Developers:</em><br />
LINQ, NUnit, Castle ActiveRecord, NHibernate, HQL, T-SQL, PL/SQL, Data Modeling, Stored Procedures, Log4Net</p>
<p><em>Common Skills All Developers Must Have:</em><br />
C#, XML</p>
<p>The list above is not absolute as there will always be a mixture of skill sets.  However, the goal will be to use the general categories to help staff projects.</p>
<p>Now, on our upcoming projects, we are going to pair the developers and divide the work based on thier skill sets.  In each project we will do our best to split the skill sets 50/50 (or close to it) as needed.  This way, the developers that really shine in front-end development can spend most of their time building the web pages, working on the AJAX and working on the user experience.  The back-end developers can spend their time where they are the strongest in wiring up the database and building the business logic.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/272/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/272/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/272/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=272&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2008/12/10/is-further-specialization-needed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>
	</item>
		<item>
		<title>Upcoming MS City to Shore Bike Ride</title>
		<link>http://tempestini.net/2008/07/26/upcoming-ms-city-to-shore-bike-ride/</link>
		<comments>http://tempestini.net/2008/07/26/upcoming-ms-city-to-shore-bike-ride/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 19:55:55 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://vbasp.wordpress.com/?p=263</guid>
		<description><![CDATA[The National MS Society is kicking off its annual Bike MS: City to Shore Ride. My son Ryan and I are planning to be a part of this exciting event and we are asking you to join us in the fight against MS by making a contribution to support our effort.  Our goal is to raise $500 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=263&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>The National MS Society is kicking off its annual Bike MS: City to Shore Ride. My son Ryan and I are planning to be a part of this exciting event and we are asking you to join us in the fight against MS by making a contribution to support our effort.  Our goal is to raise $500 and we need your help.</p>
<div>
<p>The National Multiple Sclerosis Society is dedicated to ending the devastating effects of MS by funding research for a cure while helping people who currently live with MS lead more fulfilling lives. We believe in the work they do, and we invite you to see for yourself all the good they&#8217;ve done for the MS community. More than 400,000 Americans live with MS, and your support can and will make changes in their lives.</p></div>
<p><a href="http://main.nationalmssociety.org/site/TR?px=5318270&amp;pg=personal&amp;fr_id=8150" target="_blank">Please help by making a donation</a> &#8211; large or small &#8211; to fight MS. Or, why not <a href="http://main.nationalmssociety.org/site/TR?fr_id=8150&amp;pg=entry" target="_blank">join us on the day of the event</a> as a cyclist or a volunteer? Become a participant and we can work together in to raise the funds to make a difference.</p>
<p><a href="http://main.nationalmssociety.org/site/TR?px=5318270&amp;pg=personal&amp;fr_id=8150" target="_blank">Whatever you can give will help</a>! We greatly appreciate your support and will keep you posted on my progress.</p>
<p>Sincerely,<br />
<span style="color:#888888;">Rick Tempestini </span></p>
<p><a href="http://main.nationalmssociety.org/site/TR?px=5318270&amp;pg=personal&amp;fr_id=8150" target="_blank">Click here</a> to get to my personal page and make a secure, online donation.</p>
<p>[Update:  Thanks for all your donations!  It was a great ride.  Ryan and I were able to raise over $1400.  We are looking forward to next year...]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vbasp.wordpress.com/263/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vbasp.wordpress.com/263/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=263&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2008/07/26/upcoming-ms-city-to-shore-bike-ride/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>
	</item>
		<item>
		<title>GetUpperBound</title>
		<link>http://tempestini.net/2008/03/12/getupperbound/</link>
		<comments>http://tempestini.net/2008/03/12/getupperbound/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 02:40:40 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Arrays]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://vbasp.wordpress.com/?p=256</guid>
		<description><![CDATA[The GetUpperBound method of an array actually takes a single parameter in .NET. Unfortunately, Microsoft&#8217;s documentation on MSDN does not provide a clear explanation of the purpose and usage of this parameter (in my opinion). First, the GetUpperBound method of an array will return an integer with the number corresponding to the highest number &#8220;element&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=256&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>The GetUpperBound method of an array actually takes a single parameter in .NET.  Unfortunately, Microsoft&#8217;s documentation on MSDN does not provide a clear explanation of the purpose and usage of this parameter (in my opinion).</p>
<p>First, the GetUpperBound method of an array will return an integer with the number corresponding to the highest number &#8220;element&#8221; that can be placed into a array.  For example, Label1 would display the number &#8217;4&#8242; after the following snippet of code because the array was created to hold five (5) values (remember, arrays in .NET are zero-based)</p>
<p><a href="http://vbasp.files.wordpress.com/2008/03/getupperboundsingle2.png" title="GetUpperBoundSingle2"><img src="http://vbasp.files.wordpress.com/2008/03/getupperboundsingle2.png" alt="GetUpperBoundSingle2" /></a></p>
<p>In the code above, however, a zero (0) was used when calling the GetUpperBound method.  Since the array was declared as a single-dimensional array, there was only one dimension to get the upper bound value from.  Therefore, a zero (0) was passed in to represent the first (and only) dimension of this array.  Note: dimensions of the array are even zero-based and that is why a one (1) was not passed in.</p>
<p>On a two-dimensional array, this parameter can now take a zero or a one based upon which dimension you want to return a value for as seen in the following example:</p>
<p><a href="http://vbasp.files.wordpress.com/2008/03/getupperboundmulti.png" title="GetUpperBoundMulti"><img src="http://vbasp.files.wordpress.com/2008/03/getupperboundmulti.png" alt="GetUpperBoundMulti" /></a></p>
<p>In the code above, a two-dimensional array is created with three (3) as the first dimension and four (4) as the second dimension. Again, since the dimensions of an array are zero-based, the call to GetUpperBound(0) will represent the first dimension and the call to GetUpperBound(1) will represent the second dimension.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vbasp.wordpress.com/256/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vbasp.wordpress.com/256/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/256/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=256&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2008/03/12/getupperbound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>

		<media:content url="http://vbasp.files.wordpress.com/2008/03/getupperboundsingle2.png" medium="image">
			<media:title type="html">GetUpperBoundSingle2</media:title>
		</media:content>

		<media:content url="http://vbasp.files.wordpress.com/2008/03/getupperboundmulti.png" medium="image">
			<media:title type="html">GetUpperBoundMulti</media:title>
		</media:content>
	</item>
		<item>
		<title>Permanent vs. Temporary Cookies</title>
		<link>http://tempestini.net/2007/08/18/permanent-vs-temporary-cookies/</link>
		<comments>http://tempestini.net/2007/08/18/permanent-vs-temporary-cookies/#comments</comments>
		<pubDate>Sat, 18 Aug 2007 13:27:05 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Cookies]]></category>

		<guid isPermaLink="false">http://vbasp.wordpress.com/2007/08/18/permanent-vs-temporary-cookies/</guid>
		<description><![CDATA[Cookies, by default, when created using the following code sample, expire when the browser closes: If, however, the Expires property is set to a date and time in the future of the current date and time, a persistent cookie file will be written to the local client hard drive. For Internet Explorer, cookies are placed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=243&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Cookies, by default, when created using the following code sample, expire when the browser closes:</p>
<p><a href="http://vbasp.files.wordpress.com/2007/08/code-sample-cookie-no-expiration.jpg" title="code-sample-cookie-no-expiration.jpg"><img src="http://vbasp.files.wordpress.com/2007/08/code-sample-cookie-no-expiration.jpg" alt="code-sample-cookie-no-expiration.jpg" /></a></p>
<p>If, however, the Expires property is set to a date and time in the future of the current date and time, a persistent cookie file will be written to the local client hard drive. For Internet Explorer, cookies are placed in the c:\Documents and Settings\[user_name]\Cookies directory.</p>
<p>Therefore, the code sample below will write a permanent cookie to the clients hard drive because the Expire property was set to a time in the future.</p>
<p><a href="http://vbasp.files.wordpress.com/2007/08/code-sample-cookie-with-expiration.jpg" title="code-sample-cookie-with-expiration.jpg"><img src="http://vbasp.files.wordpress.com/2007/08/code-sample-cookie-with-expiration.jpg" alt="code-sample-cookie-with-expiration.jpg" /></a></p>
<p>Now, looking into my local cookies directory I see my new cookie file:</p>
<p><a href="http://vbasp.files.wordpress.com/2007/08/file-explorer-with-new-cookie.jpg" title="file-explorer-with-new-cookie.jpg"><img src="http://vbasp.files.wordpress.com/2007/08/file-explorer-with-new-cookie.jpg" alt="file-explorer-with-new-cookie.jpg" /></a></p>
<p>If I open the cookie, I can now see the name of the cookie &#8220;TestCookie&#8221; and the name-value pair that I stored in the cookie: setting1-test.</p>
<p><a href="http://vbasp.files.wordpress.com/2007/08/test-cookie.jpg" title="test-cookie.jpg"><img src="http://vbasp.files.wordpress.com/2007/08/test-cookie.jpg" alt="test-cookie.jpg" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vbasp.wordpress.com/243/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vbasp.wordpress.com/243/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/243/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=243&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2007/08/18/permanent-vs-temporary-cookies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>

		<media:content url="http://vbasp.files.wordpress.com/2007/08/code-sample-cookie-no-expiration.jpg" medium="image">
			<media:title type="html">code-sample-cookie-no-expiration.jpg</media:title>
		</media:content>

		<media:content url="http://vbasp.files.wordpress.com/2007/08/code-sample-cookie-with-expiration.jpg" medium="image">
			<media:title type="html">code-sample-cookie-with-expiration.jpg</media:title>
		</media:content>

		<media:content url="http://vbasp.files.wordpress.com/2007/08/file-explorer-with-new-cookie.jpg" medium="image">
			<media:title type="html">file-explorer-with-new-cookie.jpg</media:title>
		</media:content>

		<media:content url="http://vbasp.files.wordpress.com/2007/08/test-cookie.jpg" medium="image">
			<media:title type="html">test-cookie.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Lab 19 – Terraservice</title>
		<link>http://tempestini.net/2007/07/22/lab-19-%e2%80%93-terraservice/</link>
		<comments>http://tempestini.net/2007/07/22/lab-19-%e2%80%93-terraservice/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 15:30:39 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[Terraservice]]></category>
		<category><![CDATA[Web Service]]></category>

		<guid isPermaLink="false">http://vbasp.wordpress.com/2007/07/22/lab-19-%e2%80%93-terraservice/</guid>
		<description><![CDATA[You will create a simple web application that will call a web service located on the Internet. The Terraservice web service is a publicly accessible web service that can be used by any SOAP-compatible web service. Lab19 Default.aspx Default.aspx.vb<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=239&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>You will create a simple web application that will call a web service located on the Internet.<span>  </span>The <i>Terraservice</i> web service is a publicly accessible web service that can be used by any SOAP-compatible web service.<span>  </span></p>
<p><a href="http://vbasp.files.wordpress.com/2007/07/vbasp-lab-19.pdf" title="Lab19">Lab19</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab19defaultaspx.txt" title="Default.aspx">Default.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab19defaultaspxvb.txt" title="Default.aspx.vb">Default.aspx.vb</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vbasp.wordpress.com/239/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vbasp.wordpress.com/239/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=239&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2007/07/22/lab-19-%e2%80%93-terraservice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>
	</item>
		<item>
		<title>Lab 18 – Web Services</title>
		<link>http://tempestini.net/2007/07/22/lab-18-%e2%80%93-web-services/</link>
		<comments>http://tempestini.net/2007/07/22/lab-18-%e2%80%93-web-services/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 14:56:29 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[Web Service]]></category>

		<guid isPermaLink="false">http://vbasp.wordpress.com/2007/07/22/lab-18-%e2%80%93-web-services/</guid>
		<description><![CDATA[You will create a Visual Studio solution that contains two projects: a web site project and a web service project. The web site project will reference the web service project and make a call to the web service at runtime. In addition, you will use the IIS manager to configure an IIS virtual directory for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=234&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>You will create a Visual Studio solution that contains two projects:<span>  </span>a web site project and a web service project.<span>  </span>The web site project will reference the web service project and make a call to the web service at runtime. <span> </span>In addition, you will use the IIS manager to configure an IIS virtual directory for the web service.<span>  </span></p>
<p><a href="http://vbasp.files.wordpress.com/2007/07/vbasp-lab-18-web-services.doc" title="Lab18">Lab18</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab18lab18sln.txt" title="Lab18.sln">Lab18.sln</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab18defaultaspx.txt" title="Default.aspx">Default.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab18defaultaspxvb.txt" title="Default.aspx.vb">Default.aspx.vb</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vbasp.wordpress.com/234/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vbasp.wordpress.com/234/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=234&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2007/07/22/lab-18-%e2%80%93-web-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>
	</item>
		<item>
		<title>Lab 17 – Membership</title>
		<link>http://tempestini.net/2007/07/22/lab-17-%e2%80%93-membership/</link>
		<comments>http://tempestini.net/2007/07/22/lab-17-%e2%80%93-membership/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 14:33:49 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[Membership]]></category>

		<guid isPermaLink="false">http://vbasp.wordpress.com/2007/07/22/lab-17-%e2%80%93-membership/</guid>
		<description><![CDATA[You will recreate the application from Lab 16. This time, however, you will create the application with the ASP.NET membership web controls. This application will use a SQL Server Express database to store the user accounts. Also, the ASP.NET membership controls will automatically use this database for registration and login. Lab17 Default.aspx Default.aspx.vb Login.aspx Login.aspx.vb [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=225&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>You will recreate the application from Lab 16.<span>  </span>This time, however, you will create the application with the ASP.NET membership web controls. This application will use a SQL Server Express database to store the user accounts. <span> </span>Also, the ASP.NET membership controls will automatically use this database for registration and login.<span>  </span></p>
<p><a href="http://vbasp.files.wordpress.com/2007/07/vbasp-lab-17.pdf" title="Lab17">Lab17</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab17defaultaspx.txt" title="Default.aspx">Default.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab17defaultaspxvb.txt" title="Default.aspx.vb">Default.aspx.vb</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab17loginaspx.txt" title="Login.aspx">Login.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab17loginaspxvb.txt" title="Login.aspx.vb">Login.aspx.vb</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab17registeraspx.txt" title="Register.aspx">Register.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab17registeraspxvb.txt" title="Register.aspx.vb">Register.aspx.vb</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab17webconfig.txt" title="web.config">web.config</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vbasp.wordpress.com/225/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vbasp.wordpress.com/225/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=225&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2007/07/22/lab-17-%e2%80%93-membership/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>
	</item>
		<item>
		<title>Lab 16 – Security Fundamentals</title>
		<link>http://tempestini.net/2007/07/22/lab-16-%e2%80%93-security-fundamentals/</link>
		<comments>http://tempestini.net/2007/07/22/lab-16-%e2%80%93-security-fundamentals/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 14:02:01 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://vbasp.wordpress.com/2007/07/22/lab-16-%e2%80%93-security-fundamentals/</guid>
		<description><![CDATA[You will create an application that will be restricted to only logged in users. This application will have a registration page that will be used to create a single user account in a local XML file. A login page will also be created to verify a typed in user name and password prior to letting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=216&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>You will create an application that will be restricted to only logged in users.<span>  </span>This application will have a registration page that will be used to create a single user account in a local XML file.<span>  </span>A login page will also be created to verify a typed in user name and password prior to letting the user into the site.<span>  </span></p>
<p><a href="http://vbasp.files.wordpress.com/2007/07/vbasp-lab-16.pdf" title="Lab16">Lab16</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab16defaultaspx.txt" title="Default.aspx">Default.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab16defaultaspxvb.txt" title="Default.aspx.vb">Default.aspx.vb</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab16loginaspx.txt" title="Login.aspx">Login.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab16loginaspxvb.txt" title="Login.aspx.vb">Login.aspx.vb</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab16registeraspx.txt" title="Register.aspx">Register.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab16registeraspxvb.txt" title="Register.aspx.vb">Register.aspx.vb</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab16webconfig.txt" title="web.config">web.config</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vbasp.wordpress.com/216/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vbasp.wordpress.com/216/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=216&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2007/07/22/lab-16-%e2%80%93-security-fundamentals/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>
	</item>
		<item>
		<title>Lab 15 – XML</title>
		<link>http://tempestini.net/2007/07/22/lab-15-%e2%80%93-xml/</link>
		<comments>http://tempestini.net/2007/07/22/lab-15-%e2%80%93-xml/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 13:37:38 +0000</pubDate>
		<dc:creator>Rick Tempestini</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://vbasp.wordpress.com/2007/07/22/lab-15-%e2%80%93-xml/</guid>
		<description><![CDATA[You will write code to create a local XML file using the XmlDocument object. You will then write additional code to read the XML file from your local c: drive and then search the XML file for a specific XML element. Lab15 Default.aspx Default.aspx.vb<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=213&subd=vbasp&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>You will write code to create a local XML file using the <i>XmlDocument</i> object.<span>  </span>You will then write additional code to read the XML file from your local <i>c:</i> drive and then search the XML file for a specific XML element.<span>  </span></p>
<p><a href="http://vbasp.files.wordpress.com/2007/07/vbasp-lab-15.pdf" title="Lab15">Lab15</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab15defaultaspx.txt" title="Default.aspx">Default.aspx</a><br />
<a href="http://vbasp.files.wordpress.com/2007/07/lab15defaultaspxvb.txt" title="Default.aspx.vb">Default.aspx.vb</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vbasp.wordpress.com/213/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vbasp.wordpress.com/213/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vbasp.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vbasp.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vbasp.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vbasp.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vbasp.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vbasp.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vbasp.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vbasp.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vbasp.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vbasp.wordpress.com/213/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tempestini.net&blog=662943&post=213&subd=vbasp&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://tempestini.net/2007/07/22/lab-15-%e2%80%93-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94258dc22f658263fcfe9c32b6c813a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rick Tempestini</media:title>
		</media:content>
	</item>
	</channel>
</rss>