<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://shawnhyde.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Recipes</title><subtitle type="html" /><id>http://shawnhyde.com/blogs/recipes/atom.aspx</id><link rel="alternate" type="text/html" href="http://shawnhyde.com/blogs/recipes/default.aspx" /><link rel="self" type="application/atom+xml" href="http://shawnhyde.com/blogs/recipes/atom.aspx" /><generator uri="http://communityserver.org" version="4.1.31106.3070">Community Server</generator><updated>2008-09-06T20:32:00Z</updated><entry><title>Asp.net C# script for Permanent 301 Redirect </title><link rel="alternate" type="text/html" href="/blogs/recipes/archive/2009/03/27/asp-net-c-script-for-permanent-301-redirect.aspx" /><id>/blogs/recipes/archive/2009/03/27/asp-net-c-script-for-permanent-301-redirect.aspx</id><published>2009-03-27T20:32:00Z</published><updated>2009-03-27T20:32:00Z</updated><content type="html">&lt;p&gt;&lt;strong&gt;Here is the code, add this to your global.asax file:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;textarea cols="56" rows="8" style="width:565px;height:203px;"&gt;&amp;lt;script language=&amp;quot;C#&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;
// This code is provided free for all, enjoy! &amp;copy;2008-2009 Shawn Hyde http://shawnhyde.com
protected void Application_BeginRequest(Object sender, EventArgs e)
        {  
if (HttpContext.Current.Request.Url.ToString().ToLower().Contains(&amp;quot;http://olddomain.tld&amp;quot;)) 
{ 
    HttpContext.Current.Response.Status = &amp;quot;301 Moved Permanently&amp;quot;; 
    HttpContext.Current.Response.AddHeader(&amp;quot;Location&amp;quot;, Request.Url.ToString().ToLower().Replace(&amp;quot;http://olddomain.tld&amp;quot;,&amp;quot;http://newdomain.tld&amp;quot;)); 
} 
}
&amp;lt;/script&amp;gt;&lt;/textarea&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://shawnhyde.com/aggbug.aspx?PostID=31" width="1" height="1"&gt;</content><author><name>kiamori</name><uri>http://shawnhyde.com/members/kiamori/default.aspx</uri></author><category term="Proper 301 Redirect for asp.net C#" scheme="http://shawnhyde.com/blogs/recipes/archive/tags/Proper+301+Redirect+for+asp.net+C_2300_/default.aspx" /></entry><entry><title>Shawn's Best Gourmet Popcorn - Organic</title><link rel="alternate" type="text/html" href="/blogs/recipes/archive/2008/09/06/shawn-s-best-gourmet-popcorn-organic.aspx" /><id>/blogs/recipes/archive/2008/09/06/shawn-s-best-gourmet-popcorn-organic.aspx</id><published>2008-09-07T01:32:00Z</published><updated>2008-09-07T01:32:00Z</updated><content type="html">&lt;p&gt;People tell me this is by far the best popcorn they have ever had so I figured I would write up the recipe for it here on my website. I made this up one evening while making a batch of popcorn. my measurements are a guesstimate, I never measure anything using exact measurements.&lt;/p&gt;
&lt;p&gt;Shawn&amp;#39;s Best Gourmet Popcorn&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Pop 1-1.5 cup(s) Organic popcorn in any hot air popper.&lt;/li&gt;
    &lt;li&gt;Melt 1/2 Cup Real-Organic butter with 2 tables spoons Organic Virgin Olive Oil&lt;/li&gt;
    &lt;li&gt;After butter is melted, &lt;strong&gt;not&lt;/strong&gt; boiling hot add 1/3 cup Organic Brown Sugar(a bit hard to find, might need to go to a Natural food store)&lt;/li&gt;
    &lt;li&gt;Now mix and bring to a boil.&lt;/li&gt;
    &lt;li&gt;Popcorn should be done popping at this point.&lt;/li&gt;
    &lt;li&gt;use a spoon and drip mix on popcorn evenly shaking in container to mix evenly.&lt;/li&gt;
    &lt;li&gt;After all butter sauce is evenly mixed, sprinkle&amp;nbsp;two &amp;quot;pinches&amp;quot; of salt and shake again.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Yes, I eat organic, I don&amp;#39;t like chemicals in my food let along genetic modifications.&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://shawnhyde.com/aggbug.aspx?PostID=25" width="1" height="1"&gt;</content><author><name>kiamori</name><uri>http://shawnhyde.com/members/kiamori/default.aspx</uri></author><category term="Organic" scheme="http://shawnhyde.com/blogs/recipes/archive/tags/Organic/default.aspx" /><category term="Gourmet" scheme="http://shawnhyde.com/blogs/recipes/archive/tags/Gourmet/default.aspx" /><category term="Recipe" scheme="http://shawnhyde.com/blogs/recipes/archive/tags/Recipe/default.aspx" /><category term="Popcorn" scheme="http://shawnhyde.com/blogs/recipes/archive/tags/Popcorn/default.aspx" /></entry></feed>