<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Berryware Blog</title>
	<atom:link href="http://berryware.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://berryware.wordpress.com</link>
	<description>Software development in general... some of it applies to Berryware, some of it is just experimental!</description>
	<lastBuildDate>Fri, 06 Nov 2009 01:52:19 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='berryware.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bfc3986bd98880871f47ef7fbc710cb4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>The Berryware Blog</title>
		<link>http://berryware.wordpress.com</link>
	</image>
			<item>
		<title>NLog and Windows Event Log Bug?</title>
		<link>http://berryware.wordpress.com/2009/11/06/nlog-and-windows-event-log-bug/</link>
		<comments>http://berryware.wordpress.com/2009/11/06/nlog-and-windows-event-log-bug/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 01:50:51 +0000</pubDate>
		<dc:creator>kevinbe71</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Windows Development]]></category>

		<guid isPermaLink="false">http://berryware.wordpress.com/?p=21</guid>
		<description><![CDATA[I&#8217;ve been experimenting with a logging library for .NET called NLog.  My past experience has been with Log4Net but I&#8217;ve not been all that happy with Log4Net so I was looking for a better alternative.  NLog seems to be that alternative&#8230; but I ran into one glitch when I switched from file and console logging [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=21&subd=berryware&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been experimenting with a logging library for .NET called NLog.  My past experience has been with Log4Net but I&#8217;ve not been all that happy with Log4Net so I was looking for a better alternative.  NLog seems to be that alternative&#8230; but I ran into one glitch when I switched from file and console logging to Windows event logging.  I just wasn&#8217;t getting anything logged.  The first problem was that I didn&#8217;t have an event log source defined, so I used WiX to create an event source (pretty easy to do since I&#8217;ve already used WiX for this purpose in the past).  After that I was a bit puzzled- it still wasn&#8217;t working and the nlog internal logs weren&#8217;t showing anything either.</p>
<p>It was time to dig into the source code&#8230; and what I found out seems to be a bug in NLog.  I had a target configured this way:</p>
<pre>&lt;target
  name="eventlog"
  xsi:type="EventLog"
  layout="${longdate}|${level}|${message}"
  log="Application"
  source="My Source" /&gt;</pre>
<p>I didn&#8217;t have machineName defined.  After all, the documentation stated that machineName defaults to the local machine anyway, so why set it to anything?  Well&#8230; because if you don&#8217;t then a boolean member var called _operational stays &#8220;false&#8221; and it needs to be set to &#8220;true&#8221; for the event log entry to get written!  So, the workaround for this is actually pretty easy:</p>
<pre>&lt;target
  name="eventlog"
  xsi:type="EventLog"
  layout="${longdate}|${level}|${message}"
  log="Application"
  source="My Source"
  <span style="color:#ff0000;"><strong>machineName="."</strong></span> /&gt;</pre>
<p>Anyway, I thought someone else may find this useful if they&#8217;re also an NLog newbie&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/berryware.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/berryware.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/berryware.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/berryware.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/berryware.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/berryware.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/berryware.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/berryware.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/berryware.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/berryware.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=21&subd=berryware&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://berryware.wordpress.com/2009/11/06/nlog-and-windows-event-log-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/835bab674ee2fe15ee48c48520fe8c42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kevinbe71</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio 2008 Locking Up</title>
		<link>http://berryware.wordpress.com/2009/06/30/visual-studio-2008-locking-up/</link>
		<comments>http://berryware.wordpress.com/2009/06/30/visual-studio-2008-locking-up/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 04:13:58 +0000</pubDate>
		<dc:creator>kevinbe71</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://berryware.wordpress.com/?p=14</guid>
		<description><![CDATA[I&#8217;ve been working on an ASP.NET MVC project and I ran into an annoying Visual Studio 2008 SP 1 bug.  When viewing the markup of a particular page it would lock up as if a modal dialog was being displayed (i.e. you could click on Visual Studio and it would beep but no dialog could [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=14&subd=berryware&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been working on an ASP.NET MVC project and I ran into an annoying Visual Studio 2008 SP 1 bug.  When viewing the markup of a particular page it would lock up as if a modal dialog was being displayed (i.e. you could click on Visual Studio and it would beep but no dialog could be viewed).  It would only lock up after a few seconds of inactivity so it appears to be related to some background task that kicks in when the IDE is idle.  In any case, if you&#8217;ve seen the behavior you may want to try to track down a stylesheet link&#8230; this could be the problem!  I don&#8217;t know why, but removing this line stopped the lock up from occurring.</p>
<p><tt>&lt;link rel="stylesheet" type="text/css" href="style.css" /&gt;</tt></p>
<p>The problem is that you may need the css for the page to work correctly.  If so, then you may have to remove it while you&#8217;re doing significant editing and then paste it back in when you&#8217;re done.</p>
<p><em>Update #1: This appears to be a general problem with CSS styling.  If I go into the options page for &#8220;CSS Styling&#8221;  in the &#8220;HTML Designer&#8221; section it also locks up.</em><br />
<em>Update #2: The problem turned out to be more extensive and I couldn&#8217;t even use the web form designer- it locked up in the same way.  The good news is that I&#8217;ve solved the problem with a little bit of help from an MVP named Michael Taylor.  He pointed me to a Connect posting that gave me a few clues about what could be causing the problem.  In the end I tried quite a few things but I think the thing that worked was uninstalling MS Office related stuff: Office 2007 Trial Edition (that came bundled with my laptop) and Office 2003 Web Components.  The Connect article was quite convoluted so I figured someone would benefit from me posting this here instead of referring to that URL.  However, if you want to look at it the URL is: <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=387285" target="_blank">https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=387285</a></em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/berryware.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/berryware.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/berryware.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/berryware.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/berryware.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/berryware.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/berryware.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/berryware.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/berryware.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/berryware.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=14&subd=berryware&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://berryware.wordpress.com/2009/06/30/visual-studio-2008-locking-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/835bab674ee2fe15ee48c48520fe8c42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kevinbe71</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET detected invalid characters in the URL (HTTP Error 400.0 &#8211; Bad Request)</title>
		<link>http://berryware.wordpress.com/2009/04/08/aspnet-detected-invalid-characters-in-the-url-http-error-4000-bad-request/</link>
		<comments>http://berryware.wordpress.com/2009/04/08/aspnet-detected-invalid-characters-in-the-url-http-error-4000-bad-request/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 01:00:57 +0000</pubDate>
		<dc:creator>kevinbe71</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://berryware.wordpress.com/?p=10</guid>
		<description><![CDATA[I ran into this error when writing a web app using ASP.NET MVC and using a comma in one of the input params used in the URL.  IIS 7 reported the error in the following way:
In &#8220;Error Summary&#8221; it had &#8220;HTTP Error 400.0 &#8211; Bad Request&#8221; and &#8220;ASP.NET detected invalid characters in the URL.&#8221;
In &#8220;Detailed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=10&subd=berryware&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I ran into this error when writing a web app using ASP.NET MVC and using a comma in one of the input params used in the URL.  IIS 7 reported the error in the following way:</p>
<p>In &#8220;Error Summary&#8221; it had &#8220;HTTP Error 400.0 &#8211; Bad Request&#8221; and &#8220;ASP.NET detected invalid characters in the URL.&#8221;</p>
<p>In &#8220;Detailed Error Information&#8221; the Request URL was something like this and hovering over the link showed the same URL:<br />
http://localhost/BaseUrl/Some_Path%2c_And_More/View</p>
<p>In the browser&#8217;s address box the URL was displayed as:<br />
http://localhost/BaseUrl/Some_Path%252c_And_More/View</p>
<p>The comma was being double-encoded (%2c &#8211;&gt; %252c) !  I didn&#8217;t spot the difference at first until I used the W3 Schools reference on URL encoding (http://www.w3schools.com/TAGS/ref_urlencode.asp) and noticed the encoding of %.</p>
<p>So, in the end the solution was to remove the bit of code that was doing the extra URL encoding.  Pretty simple really&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/berryware.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/berryware.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/berryware.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/berryware.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/berryware.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/berryware.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/berryware.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/berryware.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/berryware.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/berryware.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=10&subd=berryware&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://berryware.wordpress.com/2009/04/08/aspnet-detected-invalid-characters-in-the-url-http-error-4000-bad-request/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/835bab674ee2fe15ee48c48520fe8c42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kevinbe71</media:title>
		</media:content>
	</item>
		<item>
		<title>Uninstalling VS 2008 Beta &#8220;Microsoft Windows Vista Client Headers and Libraries (6001.16533.121)&#8221;</title>
		<link>http://berryware.wordpress.com/2009/01/04/uninstalling-vs-2httpberrywarewordpresscomwp-adminpost-newphp008-beta-microsoft-windows-vista-client-headers-and-libraries-600116533121/</link>
		<comments>http://berryware.wordpress.com/2009/01/04/uninstalling-vs-2httpberrywarewordpresscomwp-adminpost-newphp008-beta-microsoft-windows-vista-client-headers-and-libraries-600116533121/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 01:31:36 +0000</pubDate>
		<dc:creator>kevinbe71</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Windows Development]]></category>

		<guid isPermaLink="false">http://berryware.wordpress.com/?p=4</guid>
		<description><![CDATA[I recently upgraded one of my old desktop systems that had a VS 2008 Beta installed on it.  When attempting to install the gold version of VS 2008 it complained about the pre-release &#8220;Microsoft Windows Vista Client Headers and Libraries&#8221; still being present on the system.  This made some sense because the VS 2008 Beta [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=4&subd=berryware&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently upgraded one of my old desktop systems that had a VS 2008 Beta installed on it.  When attempting to install the gold version of VS 2008 it complained about the pre-release &#8220;Microsoft Windows Vista Client Headers and Libraries&#8221; still being present on the system.  This made some sense because the VS 2008 Beta uninstall had failed to uninstall some libraries.  I followed the work around documented on this page:</p>
<p>http://blogs.msdn.com/varungupta/archive/2007/11/27/i-uninstalled-visual-studio-2008-beta2-but-still-cannot-install-vs-2008-final-release.aspx</p>
<p>However, this process complained about a dependency on &#8220;vstscore_vs&#8221;.  The only page that had information on this was a Japanese page:</p>
<p>http://www.niuc.net/post/82/</p>
<p>(well, it looks like Japanese to me&#8230; I&#8217;m not really sure, but whatever it is I can&#8217;t read it!)</p>
<p>That same page mentioned &#8220;procore_vs&#8221; that is mentioned in the earlier article.  So, I put 2 and 2 together and figured that it was safe to use the &#8220;procore_vs&#8221; workaround for the &#8220;vstscore_vs&#8221; message.  It worked!</p>
<p>So, if you&#8217;re seeing a message about &#8220;vstscore_vs&#8221; then use the following step to remove the dependency:</p>
<p style="margin:0;"><span style="font-family:arial;font-size:x-small;"><em><span style="font-family:Calibri,sans-serif;"><span style="font-size:small;">Delete the following Registry key and try uninstall again.</span></span></em></span></p>
<p><span style="font-family:arial;font-size:x-small;"><em><span style="font-family:Calibri,sans-serif;"><span style="font-size:small;">HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\ProductReference\ReferencedProducts7D7D27646D242F5BC900906C330746E</span></span></em></span></p>
<p>The following warning note on the original page had made me nervous, but with the Japanese page showing this same step and mentioning both vstscore_vs and procore_vs I figured that it wasn&#8217;t that bad&#8230;</p>
<p><span style="font-family:Calibri,sans-serif;"><span style="font-family:arial;font-size:x-small;"><span style="font-size:small;">&#8220;</span></span></span><span style="font-family:Calibri,sans-serif;"><span style="font-family:arial;font-size:x-small;"><span style="font-size:small;">Note: This workaround is for a specific case and don’t delete registry key in any other case.&#8221; </span></span></span></p>
<p><span style="font-family:Calibri,sans-serif;"><span style="font-family:arial;font-size:x-small;"><span style="font-size:small;">However&#8230; the usual disclaimer should be included: use at your own risk!  Also, could someone who understands Japanese perhaps confirm my hunches?<br />
</span></span></span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/berryware.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/berryware.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/berryware.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/berryware.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/berryware.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/berryware.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/berryware.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/berryware.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/berryware.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/berryware.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=4&subd=berryware&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://berryware.wordpress.com/2009/01/04/uninstalling-vs-2httpberrywarewordpresscomwp-adminpost-newphp008-beta-microsoft-windows-vista-client-headers-and-libraries-600116533121/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/835bab674ee2fe15ee48c48520fe8c42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kevinbe71</media:title>
		</media:content>
	</item>
		<item>
		<title>Using ASP.NET MVC From Visual Web Developer Express 2008</title>
		<link>http://berryware.wordpress.com/2008/04/19/using-aspnet-mvc-from-visual-web-developer-express-2008/</link>
		<comments>http://berryware.wordpress.com/2008/04/19/using-aspnet-mvc-from-visual-web-developer-express-2008/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 05:42:09 +0000</pubDate>
		<dc:creator>kevinbe71</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>

		<guid isPermaLink="false">http://berryware.wordpress.com/?p=3</guid>
		<description><![CDATA[Recently I&#8217;ve been curious about Microsoft&#8217;s ASP.NET MVC framework that is currently at &#8220;Preview 2&#8243; stage (although there may be more recent CTPs floating around).  I&#8217;ve read a bit about it and felt it was time to actually dig in and start writing a web site that uses the technology.  I don&#8217;t own [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=3&subd=berryware&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Recently I&#8217;ve been curious about Microsoft&#8217;s ASP.NET MVC framework that is currently at &#8220;Preview 2&#8243; stage (although there may be more recent CTPs floating around).  I&#8217;ve read a bit about it and felt it was time to actually dig in and start writing a web site that uses the technology.  I don&#8217;t own a copy of VS 2008 so I figured I&#8217;d download VWD Express 2008 and play around with it.  Well, the problem is that ASP.NET MVC doesn&#8217;t specifically support it.  Fortunately, I found a blog posting by Jason Whitehorn that got me started.  However, I couldn&#8217;t get it working immediately.  I ran into two issues that I&#8217;ll explain below.  I figure that this may be helpful to others.</p>
<p>Jason Whitehorn’s blog posting here:</p>
<p><a href="http://jason.whitehorn.ws/CommentView.aspx?guid=fe174c73-ab93-4f5a-9197-5b2c3ddc6cdf">http://jason.whitehorn.ws/CommentView.aspx?guid=&#8230;</a></p>
<p>Jason provides all the pieces of the puzzle but his page is missing a few minor points that a newbie may run into:</p>
<ol>
<li>Downloading the zipped template to the <strong>Visual Studio 2008\Templates\ProjectTemplates\Visual Web Developer</strong> folder doesn’t appear to work at first if you download the C# template. The reason for this is that VWD defaults to VB as a language. All you need to do is select C# from the drop-down list and the template will appear. Another mistake a newbie might make is to unzip this file.  Don’t- it won’t be found if it isn’t zipped.</li>
<li>You should change the VirtualPath property of your web site from “/&lt;your_web_site_name&gt;” to just “/”.<span> </span>Otherwise you’ll need to build routes that include your web site name as the first part of the URL- not preferable.<span> </span>If you don’t do this you may end up with the error shown below.</li>
</ol>
<p><strong>The RouteData must contain an item named &#8216;controller&#8217; with a non-empty string value.<br />
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.</strong></p>
<p><strong>Exception Details: System.InvalidOperationException: The RouteData must contain an item named &#8216;controller&#8217; with a non-empty string value.</strong></p>
<p><strong>Source Error:</strong></p>
<p><strong>An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.</strong></p>
<p><strong>Stack Trace:</strong></p>
<p><strong>[InvalidOperationException: The RouteData must contain an item named 'controller' with a non-empty string value.]<br />
System.Web.Mvc.RouteData.GetRequiredString(String keyName) +201<br />
System.Web.Mvc.MvcHandler.ProcessRequest(IHttpContext httpContext) +139<br />
System.Web.Mvc.MvcHandler.ProcessRequest(HttpContext httpContext) +55<br />
System.Web.Mvc.MvcHandler.System.Web.IHttpHandler.<br />
  ProcessRequest(HttpContext httpContext) +28<br />
System.Web.CallHandlerExecutionStep.System.Web.<br />
  HttpApplication.IExecutionStep.Execute() +358<br />
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) +64</strong></p>
<p>Anyway, I hope this will be helpful to someone else who encounters this error.  Jason&#8217;s blog post isn&#8217;t accepting comments so I couldn&#8217;t post this &#8220;answer&#8221; there.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/berryware.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/berryware.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/berryware.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/berryware.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/berryware.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/berryware.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/berryware.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/berryware.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/berryware.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/berryware.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/berryware.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/berryware.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=berryware.wordpress.com&blog=3521850&post=3&subd=berryware&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://berryware.wordpress.com/2008/04/19/using-aspnet-mvc-from-visual-web-developer-express-2008/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/835bab674ee2fe15ee48c48520fe8c42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kevinbe71</media:title>
		</media:content>
	</item>
	</channel>
</rss>