<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" version="2.0">
  <channel>
    <title>Option Strict : Cory Isakson</title>
    <link>http://blog.coryisakson.com/</link>
    <description>Technology, Community, Faith, and More</description>
    <copyright>Cory Isakson</copyright>
    <lastBuildDate>Wed, 30 Apr 2008 04:18:44 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 1.7.5016.2</generator>
    <managingEditor>cisakson@yahoo.com</managingEditor>
    <webMaster>cisakson@yahoo.com</webMaster>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,5f1d0172-04f2-44ec-9000-02ceb6640395.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,5f1d0172-04f2-44ec-9000-02ceb6640395.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,5f1d0172-04f2-44ec-9000-02ceb6640395.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=5f1d0172-04f2-44ec-9000-02ceb6640395</wfw:commentRss>
      <slash:comments>0</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">I am thrilled to announce that INETA user
   groups now have an open invitation to use SiteFinity and the offer is complete with
   free hosting from Discount ASP. Check it out at <a href="http://www.sitefinity.com/product/features/free-offer.aspx">http://www.sitefinity.com/product/features/free-offer.aspx</a> 
   Also, take a look at the <a href="http://www.netdug.com">NETDUG</a> site. We have
   taken full advantage of this offer and we are very happy with SiteFinity and Discount
   ASP.<img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=5f1d0172-04f2-44ec-9000-02ceb6640395" /></body>
      <title>SiteFinity, Discount ASP, and INETA</title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,5f1d0172-04f2-44ec-9000-02ceb6640395.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,5f1d0172-04f2-44ec-9000-02ceb6640395.aspx</link>
      <pubDate>Wed, 30 Apr 2008 04:18:44 GMT</pubDate>
      <description>I am thrilled to announce that INETA user groups now have an open invitation to use SiteFinity and the offer is complete with free hosting from Discount ASP.  Check it out at &lt;a href="http://www.sitefinity.com/product/features/free-offer.aspx"&gt;http://www.sitefinity.com/product/features/free-offer.aspx&lt;/a&gt;&amp;nbsp;
Also, take a look at the &lt;a href="http://www.netdug.com"&gt;NETDUG&lt;/a&gt; site. We have
taken full advantage of this offer and we are very happy with SiteFinity and Discount
ASP.&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=5f1d0172-04f2-44ec-9000-02ceb6640395"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,5f1d0172-04f2-44ec-9000-02ceb6640395.aspx</comments>
      <category>NETDUG</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,99d4bfd8-b903-4923-8564-a6752304ae49.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,99d4bfd8-b903-4923-8564-a6752304ae49.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,99d4bfd8-b903-4923-8564-a6752304ae49.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=99d4bfd8-b903-4923-8564-a6752304ae49</wfw:commentRss>
      <slash:comments>0</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">The ASP.NET 2.0 DefaultButton property
   on Form and Panel allows IE to fire a button or link when the user hits the enter
   key while in a form field.  The LinkButton control does not fire when the users
   browser is FireFox.  Several people have found creative ways to solve this problem. 
   I chose to take advantage of .NET 3.5 support for Extension Methods and just wrap
   the needed fixes into a method right on my form object.  Here is the code for
   you to drop into your own library.  Perhaps I will do the same for Panel when
   the need arises.<br />
      
   <br />
    public static class BrowserHelper<br />
       {<br />
            public static void DefaultLinkButton(this
   HtmlForm form, LinkButton defaultButton)<br />
           {<br />
               // Inspired by:
   http://kpumuk.info/asp-net/using-panel-defaultbutton-property-with-linkbutton-control-in-asp-net/<br /><br />
               // Wire-up the
   Link Button default supported in ASP.NET<br />
               form.DefaultButton
   = defaultButton.UniqueID;<br /><br />
               // Script to wireup
   a click event for FireFox<br />
               string _addClickScript
   = "addClickFunction('{0}');";<br /><br />
               string _addClickFunctionScript
   =<br />
                  
   @"  function addClickFunction(id) {{<br />
               var b = document.getElementById(id);<br />
               if (b &amp;&amp;
   typeof(b.click) == 'undefined') b.click = function() {{<br />
                  
   var result = true; if (b.onclick) result = b.onclick();<br />
                  
   if (typeof(result) == 'undefined' || result) {{ eval(b.href); }}<br />
               }}}};";<br /><br />
               form.Page.ClientScript.RegisterStartupScript(typeof(LinkButton),
   "addClickFunctionScript", _addClickFunctionScript, true);<br /><br />
               // Execute the
   script when the Page loads<br />
               string script =
   String.Format(_addClickScript, defaultButton.ClientID);<br />
               form.Page.ClientScript.RegisterStartupScript(typeof(LinkButton),
   "click_" + defaultButton.ClientID, script, true);<br />
           }<br />
       }<br /><img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=99d4bfd8-b903-4923-8564-a6752304ae49" /></body>
      <title>Overcome FireFox DefaultButton Challenges with .NET 3.5 Extension Methods </title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,99d4bfd8-b903-4923-8564-a6752304ae49.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,99d4bfd8-b903-4923-8564-a6752304ae49.aspx</link>
      <pubDate>Fri, 14 Mar 2008 17:51:41 GMT</pubDate>
      <description>The ASP.NET 2.0 DefaultButton property on Form and Panel allows IE to fire a button or link when the user hits the enter key while in a form field.&amp;nbsp; The LinkButton control does not fire when the users browser is FireFox.&amp;nbsp; Several people have found creative ways to solve this problem.&amp;nbsp; I chose to take advantage of .NET 3.5 support for Extension Methods and just wrap the needed fixes into a method right on my form object.&amp;nbsp; Here is the code for you to drop into your own library.&amp;nbsp; Perhaps I will do the same for Panel when the need arises.&lt;br&gt;
&amp;nbsp;&amp;nbsp; 
&lt;br&gt;
&amp;nbsp;public static class BrowserHelper&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static void DefaultLinkButton(this
HtmlForm form, LinkButton defaultButton)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Inspired by:
http://kpumuk.info/asp-net/using-panel-defaultbutton-property-with-linkbutton-control-in-asp-net/&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Wire-up the
Link Button default supported in ASP.NET&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; form.DefaultButton
= defaultButton.UniqueID;&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Script to wireup
a click event for FireFox&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string _addClickScript
= "addClickFunction('{0}');";&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string _addClickFunctionScript
=&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
@"&amp;nbsp; function addClickFunction(id) {{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var b = document.getElementById(id);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (b &amp;amp;&amp;amp;
typeof(b.click) == 'undefined') b.click = function() {{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
var result = true; if (b.onclick) result = b.onclick();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
if (typeof(result) == 'undefined' || result) {{ eval(b.href); }}&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }}}};";&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; form.Page.ClientScript.RegisterStartupScript(typeof(LinkButton),
"addClickFunctionScript", _addClickFunctionScript, true);&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Execute the
script when the Page loads&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string script =
String.Format(_addClickScript, defaultButton.ClientID);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; form.Page.ClientScript.RegisterStartupScript(typeof(LinkButton),
"click_" + defaultButton.ClientID, script, true);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=99d4bfd8-b903-4923-8564-a6752304ae49"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,99d4bfd8-b903-4923-8564-a6752304ae49.aspx</comments>
      <category>ASP.NET</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,be6c6b5a-f2ff-4330-970e-3f00a5b2263b.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,be6c6b5a-f2ff-4330-970e-3f00a5b2263b.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,be6c6b5a-f2ff-4330-970e-3f00a5b2263b.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=be6c6b5a-f2ff-4330-970e-3f00a5b2263b</wfw:commentRss>
      <slash:comments>6</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">My son has a school video project and when
   I tried to load my copy of Pinacle 10 on Vista it warned me of incompatibility issues.
   I decided to pursue something Vista compatible and Adobe Elements looked like a nice
   option. Unfortionately it crashes so much that we can't even use it. I am going to
   try it on XP, but if that doesn't do it for us then we may be forced to live with
   Pinnacle 10 on Vista for a bit. I dont feel like dumping more money into products
   at this point. Surely it has to work better than Premiere 4! I expected better from
   Adobe. How could this product pass QA?<img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=be6c6b5a-f2ff-4330-970e-3f00a5b2263b" /></body>
      <title>Premiere Elements 4 Crashes on Vista </title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,be6c6b5a-f2ff-4330-970e-3f00a5b2263b.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,be6c6b5a-f2ff-4330-970e-3f00a5b2263b.aspx</link>
      <pubDate>Sun, 23 Dec 2007 03:40:47 GMT</pubDate>
      <description>My son has a school video project and when I tried to load my copy of Pinacle 10 on Vista it warned me of incompatibility issues.  I decided to pursue something Vista compatible and Adobe Elements looked like a nice option.  Unfortionately it crashes so much that we can't even use it.  I am going to try it on XP, but if that doesn't do it for us then we may be forced to live with Pinnacle 10 on Vista for a bit.  I dont feel like dumping more money into products at this point.  Surely it has to work better than Premiere 4!  I expected better from Adobe.  How could this product pass QA?&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=be6c6b5a-f2ff-4330-970e-3f00a5b2263b"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,be6c6b5a-f2ff-4330-970e-3f00a5b2263b.aspx</comments>
      <category>Everything Else</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,1ced8c69-a74a-444c-a070-286214ca00df.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,1ced8c69-a74a-444c-a070-286214ca00df.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,1ced8c69-a74a-444c-a070-286214ca00df.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=1ced8c69-a74a-444c-a070-286214ca00df</wfw:commentRss>
      <slash:comments>0</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">Some Microsoft employees have really cool
   jobs. Some fo the Developer evangelist types are planning a Code on the Road trip
   for 2008. Can you say geek out! 
   <br /><br />
   Keeps tabs at <a href="http://thecodetrip.com">thecodetrip.com</a><br /><br /><img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=1ced8c69-a74a-444c-a070-286214ca00df" /></body>
      <title>Code Trip</title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,1ced8c69-a74a-444c-a070-286214ca00df.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,1ced8c69-a74a-444c-a070-286214ca00df.aspx</link>
      <pubDate>Tue, 04 Dec 2007 23:40:08 GMT</pubDate>
      <description>Some Microsoft employees have really cool jobs.  Some fo the Developer evangelist types are planning a Code on the Road trip for 2008.  Can you say geek out!

&lt;br&gt;
&lt;br&gt;
Keeps tabs at &lt;a href="http://thecodetrip.com"&gt;thecodetrip.com&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=1ced8c69-a74a-444c-a070-286214ca00df"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,1ced8c69-a74a-444c-a070-286214ca00df.aspx</comments>
      <category>Technology</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,7a278e59-be74-41e9-81de-361286864a48.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,7a278e59-be74-41e9-81de-361286864a48.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,7a278e59-be74-41e9-81de-361286864a48.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=7a278e59-be74-41e9-81de-361286864a48</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <font face="Arial" size="4">Registration
   link: <a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032360765&amp;Culture=en-US">http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032360765&amp;Culture=en-US</a><br /><br />
   Thursday, December 06, 2007 1:00 PM - Thursday, December 06, 2007 5:00 PM 
   <br /><br />
   Overland Park Cinemas 
   <br />
   7051 Overland Road 
   <br />
   Boise, Idaho 83709 
   <br />
   United States 
   <br /><br />
   Audience: Developer. 
   <br /><br />
   Event Overview ATTENTION DEVELOPERS! Are you ready to be one of the first to get their
   hands on Visual Studio 2008? Join Microsoft, the Boise .NET Developers User Group
   (NETDUG), and the Boise Software Developers Group (BSDG) for a Visual Studio 2008
   InstallFest and Holiday Party on December 6th, 2007 at the Overland Park Cinemas in
   Boise. Visual Studio 2008 is HERE and this event is your opportunity to get your hands
   on the released version before anyone else. Every person that installs Visual Studio
   2008 on their computer at the event will receive a FREE fully licensed copy of Visual
   Studio 2008 Professional in the mail shortly after public release. Don't miss out
   a great evening of food, fun, and your very own copy of Visual Studio 2008 Professional!
   Space is limited so register today. </font>
        <img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=7a278e59-be74-41e9-81de-361286864a48" />
      </body>
      <title>December 6th 2007 Visual Studio 2008 Install Fest</title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,7a278e59-be74-41e9-81de-361286864a48.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,7a278e59-be74-41e9-81de-361286864a48.aspx</link>
      <pubDate>Wed, 21 Nov 2007 04:57:26 GMT</pubDate>
      <description>&lt;font face="Arial" size="4"&gt;Registration link: &lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032360765&amp;amp;Culture=en-US"&gt;http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032360765&amp;amp;Culture=en-US&lt;/a&gt; 
&lt;br&gt;
&lt;br&gt;
Thursday, December 06, 2007 1:00 PM - Thursday, December 06, 2007 5:00 PM 
&lt;br&gt;
&lt;br&gt;
Overland Park Cinemas 
&lt;br&gt;
7051 Overland Road 
&lt;br&gt;
Boise, Idaho 83709 
&lt;br&gt;
United States 
&lt;br&gt;
&lt;br&gt;
Audience: Developer. 
&lt;br&gt;
&lt;br&gt;
Event Overview ATTENTION DEVELOPERS! Are you ready to be one of the first to get their
hands on Visual Studio 2008? Join Microsoft, the Boise .NET Developers User Group
(NETDUG), and the Boise Software Developers Group (BSDG) for a Visual Studio 2008
InstallFest and Holiday Party on December 6th, 2007 at the Overland Park Cinemas in
Boise. Visual Studio 2008 is HERE and this event is your opportunity to get your hands
on the released version before anyone else. Every person that installs Visual Studio
2008 on their computer at the event will receive a FREE fully licensed copy of Visual
Studio 2008 Professional in the mail shortly after public release. Don't miss out
a great evening of food, fun, and your very own copy of Visual Studio 2008 Professional!
Space is limited so register today. &lt;/font&gt;&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=7a278e59-be74-41e9-81de-361286864a48"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,7a278e59-be74-41e9-81de-361286864a48.aspx</comments>
      <category>NETDUG</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,eb132f5c-fcaf-45c7-bd85-6f92b0d9105c.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,eb132f5c-fcaf-45c7-bd85-6f92b0d9105c.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,eb132f5c-fcaf-45c7-bd85-6f92b0d9105c.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=eb132f5c-fcaf-45c7-bd85-6f92b0d9105c</wfw:commentRss>
      <slash:comments>5</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">When hosting Google Video's on your site
   it can be handy to pull back the thumbnail for the video image. Currently there is
   no API for doing this so I wrote a method to do it for me. First I retrieve the RSS
   feed for the video. Then I pull out the thumbnail path from that feed.<br /><br />
           private static string GetGoogleThumnailPath(string
   contentID)<br />
           {<br />
               string path = null;<br />
               // Fetch the RSS
   for the video<br />
               WebRequest req
   = HttpWebRequest.Create("http://video.google.com/videofeed?docid=" + contentID);<br />
               req.Method = "GET";<br />
               WebResponse response
   = req.GetResponse();<br />
               XmlTextReader stream
   = new XmlTextReader(response.GetResponseStream());<br />
               XPathDocument doc
   = new XPathDocument(stream);<br />
               XPathNavigator
   nav = doc.CreateNavigator();<br />
               XmlNamespaceManager
   manager = new XmlNamespaceManager(nav.NameTable);<br />
               manager.AddNamespace("media",
   "http://search.yahoo.com/mrss/");<br />
               XPathNodeIterator
   iterator = nav.Select("/rss/channel/item/media:group/media:thumbnail/@url", manager);<br />
               while (iterator.MoveNext())<br />
               {<br />
                  
   path = iterator.Current.Value;<br />
               }<br /><br />
               return path;<br />
           }<br /><br />
   We used this code on the <a href="http://www.petsbest.com/Community/ExternalVideo.aspx?CI=CISAKSON5">Pets
   Best Community</a> site. By the way if you are interested in <a href="http://www.petsbest.com/community/?CI=CISAKSON5">Pet
   Insurance</a> you can use my Promo Code: CISAKSON5 for a 5% discount. If you do not
   see the box to enter it on the Get a Quote page then it probably has automatically
   been applied through one of my links.<img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=eb132f5c-fcaf-45c7-bd85-6f92b0d9105c" /></body>
      <title>Getting thumbnails for Google Videos</title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,eb132f5c-fcaf-45c7-bd85-6f92b0d9105c.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,eb132f5c-fcaf-45c7-bd85-6f92b0d9105c.aspx</link>
      <pubDate>Mon, 02 Jul 2007 23:25:46 GMT</pubDate>
      <description>When hosting Google Video's on your site it can be handy to pull back the thumbnail for the video image.  Currently there is no API for doing this so I wrote a method to do it for me.

First I retrieve the RSS feed for the video.  Then I pull out the thumbnail path from that feed.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private static string GetGoogleThumnailPath(string
contentID)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string path = null;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Fetch the RSS
for the video&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WebRequest req
= HttpWebRequest.Create("http://video.google.com/videofeed?docid=" + contentID);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; req.Method = "GET";&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WebResponse response
= req.GetResponse();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XmlTextReader stream
= new XmlTextReader(response.GetResponseStream());&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XPathDocument doc
= new XPathDocument(stream);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XPathNavigator
nav = doc.CreateNavigator();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XmlNamespaceManager
manager = new XmlNamespaceManager(nav.NameTable);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; manager.AddNamespace("media",
"http://search.yahoo.com/mrss/");&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XPathNodeIterator
iterator = nav.Select("/rss/channel/item/media:group/media:thumbnail/@url", manager);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while (iterator.MoveNext())&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
path = iterator.Current.Value;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return path;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
We used this code on the &lt;a href="http://www.petsbest.com/Community/ExternalVideo.aspx?CI=CISAKSON5"&gt;Pets
Best Community&lt;/a&gt; site. By the way if you are interested in &lt;a href="http://www.petsbest.com/community/?CI=CISAKSON5"&gt;Pet
Insurance&lt;/a&gt; you can use my Promo Code: CISAKSON5 for a 5% discount. If you do not
see the box to enter it on the Get a Quote page then it probably has automatically
been applied through one of my links.&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=eb132f5c-fcaf-45c7-bd85-6f92b0d9105c"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,eb132f5c-fcaf-45c7-bd85-6f92b0d9105c.aspx</comments>
      <category>ASP.NET</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,e9d1c459-920b-47b7-a368-076253e360a0.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,e9d1c459-920b-47b7-a368-076253e360a0.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,e9d1c459-920b-47b7-a368-076253e360a0.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=e9d1c459-920b-47b7-a368-076253e360a0</wfw:commentRss>
      <slash:comments>0</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      I am leaving the country and will not be able to use my 2 airline vouchers. 
      If you can use them throw a bid at them over on EBay!
   </p>
        <p>
          <a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&amp;item=140038192577">http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&amp;item=140038192577</a>
        </p>
        <img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=e9d1c459-920b-47b7-a368-076253e360a0" />
      </body>
      <title>Round trip vouchers on Alaska/Horizon</title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,e9d1c459-920b-47b7-a368-076253e360a0.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,e9d1c459-920b-47b7-a368-076253e360a0.aspx</link>
      <pubDate>Tue, 03 Oct 2006 15:42:21 GMT</pubDate>
      <description>&lt;p&gt;
   I am leaving the country and will not be able to use my 2 airline vouchers.&amp;nbsp;
   If you can use them throw a bid at them over on EBay!
&lt;/p&gt;
&lt;p&gt;
   &lt;a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&amp;amp;item=140038192577"&gt;http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&amp;amp;item=140038192577&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=e9d1c459-920b-47b7-a368-076253e360a0"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,e9d1c459-920b-47b7-a368-076253e360a0.aspx</comments>
      <category>Everything Else</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,e1077beb-a318-47fa-9f44-daaad8f6009e.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,e1077beb-a318-47fa-9f44-daaad8f6009e.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,e1077beb-a318-47fa-9f44-daaad8f6009e.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=e1077beb-a318-47fa-9f44-daaad8f6009e</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      For those who are friends or family or just plain curious we are moving to Germany
      in a couple of weeks.  I have setup a new website and blog for sharing stories
      and photos about our life and experiences.  It is a family site and several of
      us will be making use of it.  If you are curious you can check out the new blog
      at: <a href="http://www.isaksonfamily.net/Blogs/tabid/53/BlogID/5/Default.aspx">http://www.isaksonfamily.net/Blogs/tabid/53/BlogID/5/Default.aspx</a>.  
   </p>
        <p>
      I now have 3 blogs.  <a href="http://blog.coryisakson.com">Option Strict</a> for
      my techie life, the new <a href="http://www.isaksonfamily.net/Blogs/tabid/53/BlogID/5/Default.aspx">family
      blog</a>, and my Jesus blog for sharing <a href="http://blog.360.yahoo.com/blog-2GLRhksycrVBbqngj23q5Q--;_ylt=Aps6QZ5ymujHJ32u3cDWtYC0AOJ3?cq=1">thoughts
      on the Church and spiritual life</a>.  I decided to aggregate all of my blogs
      on a <a href="http://www.isaksonfamily.net/Family/Cory/tabid/55/Default.aspx">single
      page</a> with a single feed over on the new family site for anyone who cares to follow
      all 3 in one place.
   </p>
        <p>
      Come see us in Germany.  We look forward to making new friends and seeing old
      ones while we are there.
   </p>
        <img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=e1077beb-a318-47fa-9f44-daaad8f6009e" />
      </body>
      <title>Moving to Germany soon, new blog</title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,e1077beb-a318-47fa-9f44-daaad8f6009e.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,e1077beb-a318-47fa-9f44-daaad8f6009e.aspx</link>
      <pubDate>Sat, 30 Sep 2006 06:20:58 GMT</pubDate>
      <description>&lt;p&gt;
   For those who are friends or family or just plain curious we are moving to Germany
   in a couple of weeks.&amp;nbsp; I have setup a new website and blog for sharing stories
   and photos about our life and experiences.&amp;nbsp; It is a family site and several of
   us will be making use of it.&amp;nbsp; If you are curious you can check out the new blog
   at: &lt;a href="http://www.isaksonfamily.net/Blogs/tabid/53/BlogID/5/Default.aspx"&gt;http://www.isaksonfamily.net/Blogs/tabid/53/BlogID/5/Default.aspx&lt;/a&gt;.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
   I now have 3 blogs.&amp;nbsp; &lt;a href="http://blog.coryisakson.com"&gt;Option Strict&lt;/a&gt; for
   my techie life, the new &lt;a href="http://www.isaksonfamily.net/Blogs/tabid/53/BlogID/5/Default.aspx"&gt;family
   blog&lt;/a&gt;, and my Jesus blog for sharing &lt;a href="http://blog.360.yahoo.com/blog-2GLRhksycrVBbqngj23q5Q--;_ylt=Aps6QZ5ymujHJ32u3cDWtYC0AOJ3?cq=1"&gt;thoughts
   on the Church and spiritual life&lt;/a&gt;.&amp;nbsp; I decided to aggregate all of my blogs
   on a &lt;a href="http://www.isaksonfamily.net/Family/Cory/tabid/55/Default.aspx"&gt;single
   page&lt;/a&gt; with a single feed over on the new family site for anyone who cares to follow
   all 3 in one place.
&lt;/p&gt;
&lt;p&gt;
   Come see us in Germany.&amp;nbsp; We look forward to making new friends and seeing old
   ones while we are there.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=e1077beb-a318-47fa-9f44-daaad8f6009e"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,e1077beb-a318-47fa-9f44-daaad8f6009e.aspx</comments>
      <category>Family</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96</wfw:commentRss>
      <slash:comments>0</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      Some of you are requesting example applications that are using the PageFlow tools. 
      Please be patient.  I am working out bugs in the project on a real world rewrite
      of the <a href="http://www.petsbest.com">Pets Best</a> enrollment process.  Until
      I have it working well enough a robust example application is not possible. 
      There are still some aspects of workflow that are not completely clear and thus result
      in some challenges in the toolkit.  It is mostly working.  The page flow
      aspects are working great to drive navigation.  I am now pushing through the
      remaining challenges with sending objects (data) from a workflow back to the application
      in a way that will work consistently with persisted workflows.
   </p>
        <img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96" />
      </body>
      <title>PageFlow Kit not ready yet</title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96.aspx</link>
      <pubDate>Fri, 29 Sep 2006 23:35:53 GMT</pubDate>
      <description>&lt;p&gt;
   Some of you are requesting example applications that are&amp;nbsp;using the PageFlow tools.&amp;nbsp;
   Please be patient.&amp;nbsp; I am working out bugs in the project on a real world rewrite
   of the &lt;a href="http://www.petsbest.com"&gt;Pets Best&lt;/a&gt; enrollment process.&amp;nbsp; Until
   I have it working well enough a robust example application is not possible.&amp;nbsp;
   There are still some aspects of workflow that are not completely clear and thus result
   in some challenges in the toolkit.&amp;nbsp; It is mostly working.&amp;nbsp; The page flow
   aspects are working great to drive navigation.&amp;nbsp; I am now pushing through the
   remaining challenges with sending objects (data) from a workflow back to the application
   in a way that will work consistently with persisted workflows.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,0d1c91ca-caf6-4ebf-ac3e-8046f3f0ed96.aspx</comments>
      <category>Windows Workflow Foundation</category>
    </item>
    <item>
      <trackback:ping>http://blog.coryisakson.com/Trackback,guid,7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f.aspx</trackback:ping>
      <pingback:server>http://blog.coryisakson.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.coryisakson.com/PermaLink,guid,7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f.aspx</pingback:target>
      <wfw:comment>http://blog.coryisakson.com/CommentView,guid,7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f.aspx</wfw:comment>
      <wfw:commentRss>http://blog.coryisakson.com/SyndicationService.asmx/GetEntryCommentsRss?guid=7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
      In a few weeks I will be starting a new job in Germany.  As a result I have a
      couple large items I need to sell.  Contact me if you are interested.
   </p>
        <h2>1997 Suburban 1500 : 82,500 miles - $7750 (Boise)
   </h2>
        <hr />
        <p>
      See photos at: <a href="http://www.flickr.com/photos/14596724@N00/sets/72157594301357769/detail/">http://www.flickr.com/photos/14596724@N00/sets/72157594301357769/detail/</a><br /><br />
      Excellent Condition 
      <br />
      Seats 9 
      <br />
      4WD shift on the fly 
      <br />
      Electric everything 
      <br />
      Rear air/heat! 
      <br />
      CD / Cassette 
   </p>
        <h2>Beautiful 2066 sq. ft. house : $229,000
   </h2>
        <p>
          <hr />
        </p>
        <p>
      MLS ID: <a href="http://imls.fnismls.com/idx/searchresults.aspx?RMLS_SESSION_GUID=%7b0ff41a4f-74de-4e53-9370-ebc9d013591c%7d&amp;MLS=IMLS&amp;SUBSCRIBER=ffbfd6be-60e8-4ac0-a8a2-7b6f5e397d7b&amp;&amp;class=1&amp;featured=1">98263218</a></p>
        <p>
      4+ bedrooms<br />
      3 full bathrooms<br />
      excellent neighborhood<br />
      walk to schools / parks<br />
      cheap utilities
   </p>
        <p>
      3668 N. Tee Ave, Boise, ID  83704<br /></p>
        <img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f" />
      </body>
      <title>Leaving country, must sell</title>
      <guid>http://blog.coryisakson.com/PermaLink,guid,7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f.aspx</guid>
      <link>http://blog.coryisakson.com/PermaLink,guid,7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f.aspx</link>
      <pubDate>Wed, 27 Sep 2006 01:52:42 GMT</pubDate>
      <description>&lt;p&gt;
   In a few weeks I will be starting a new job in Germany.&amp;nbsp; As a result I have a
   couple large items I need to sell.&amp;nbsp; Contact me if you are interested.
&lt;/p&gt;
&lt;h2&gt;1997 Suburban 1500 : 82,500 miles - $7750 (Boise)
&lt;/h2&gt;
&lt;hr&gt;
&lt;p&gt;
   See photos at: &lt;a href="http://www.flickr.com/photos/14596724@N00/sets/72157594301357769/detail/"&gt;http://www.flickr.com/photos/14596724@N00/sets/72157594301357769/detail/&lt;/a&gt; 
   &lt;br&gt;
   &lt;br&gt;
   Excellent Condition 
   &lt;br&gt;
   Seats 9 
   &lt;br&gt;
   4WD shift on the fly 
   &lt;br&gt;
   Electric everything 
   &lt;br&gt;
   Rear air/heat! 
   &lt;br&gt;
   CD / Cassette 
&lt;/p&gt;
&lt;h2&gt;Beautiful 2066 sq. ft. house : $229,000
&lt;/h2&gt;
&lt;p&gt;
   &lt;hr&gt;
&lt;/p&gt;
&lt;p&gt;
   MLS ID: &lt;a href="http://imls.fnismls.com/idx/searchresults.aspx?RMLS_SESSION_GUID=%7b0ff41a4f-74de-4e53-9370-ebc9d013591c%7d&amp;amp;MLS=IMLS&amp;amp;SUBSCRIBER=ffbfd6be-60e8-4ac0-a8a2-7b6f5e397d7b&amp;amp;&amp;amp;class=1&amp;amp;featured=1"&gt;98263218&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
   4+ bedrooms&lt;br&gt;
   3 full bathrooms&lt;br&gt;
   excellent neighborhood&lt;br&gt;
   walk to schools / parks&lt;br&gt;
   cheap utilities
&lt;/p&gt;
&lt;p&gt;
   3668 N. Tee Ave, Boise, ID&amp;nbsp; 83704&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://blog.coryisakson.com/aggbug.ashx?id=7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f"&gt;</description>
      <comments>http://blog.coryisakson.com/CommentView,guid,7c172cc0-1ef8-47ef-92bb-04fe25ec0b0f.aspx</comments>
      <category>Everything Else</category>
    </item>
  </channel>
</rss>