<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cymen&#039;s Blog &#187; ASP.NET MVC</title>
	<atom:link href="http://blog.cymen.org/category/web-development/asp-net-mvc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cymen.org</link>
	<description></description>
	<lastBuildDate>Wed, 18 Aug 2010 20:41:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ASP.NET MVC Route Registration and Areas</title>
		<link>http://blog.cymen.org/2010/07/09/asp-net-mvc-route-registration-and-areas/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=asp-net-mvc-route-registration-and-areas</link>
		<comments>http://blog.cymen.org/2010/07/09/asp-net-mvc-route-registration-and-areas/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 23:09:47 +0000</pubDate>
		<dc:creator>Cymen</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>

		<guid isPermaLink="false">http://blog.cymen.org/?p=162</guid>
		<description><![CDATA[I need to be able to register a route via an instance of RouteCollection to an area. I couldn&#8217;t put it in the normal area route registration as it had to be registered last. It took a while to figure out that this works: public static void RegisterAreaRoute(RouteCollection routes) { routes.MapRoute( "MyRouteName", "{*path}", new { [...]]]></description>
			<content:encoded><![CDATA[<p>I need to be able to register a route via an instance of RouteCollection to an area. I couldn&#8217;t put it in the normal area route registration as it had to be registered last. It took a while to figure out that this works:<br />
<code><br />
public static void RegisterAreaRoute(RouteCollection routes) {<br />
    routes.MapRoute(<br />
        "MyRouteName",<br />
        "{*path}",<br />
        new<br />
        {<br />
            // options<br />
        },<br />
        new[] { "_Namespace_.Areas._Area_Name_.Controllers" }<br />
    ).DataTokens.Add("area", _Area_Name_);<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cymen.org/2010/07/09/asp-net-mvc-route-registration-and-areas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC for PHP Programmers</title>
		<link>http://blog.cymen.org/2010/02/22/asp-net-mvc-for-php-programmers/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=asp-net-mvc-for-php-programmers</link>
		<comments>http://blog.cymen.org/2010/02/22/asp-net-mvc-for-php-programmers/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 23:37:30 +0000</pubDate>
		<dc:creator>Cymen</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.cymen.org/?p=148</guid>
		<description><![CDATA[Routes are rewrite rules with the &#8220;object defaults&#8221; part of the routes being similar to the variables parsed out of the URL via mod_rewrite (but they the &#8220;object defaults&#8221; can store values from other sources so the routes are somewhat like a data store). ViewData[] is similar to a global variable in PHP and it [...]]]></description>
			<content:encoded><![CDATA[<p>Routes are rewrite rules with the &#8220;object defaults&#8221; part of the routes being similar to the variables parsed out of the URL via mod_rewrite (but they the &#8220;object defaults&#8221; can store values from other sources so the routes are somewhat like a data store).</p>
<p>ViewData[] is similar to a global variable in PHP and it is populated by the Controllers and seen by the Models.</p>
<p>Lots of differences of course but just a quick thought&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cymen.org/2010/02/22/asp-net-mvc-for-php-programmers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC Overview in VWD 2010 Beta 2: Create a Movie Database Application in 15 Minutes with ASP.NET MVC (C#)</title>
		<link>http://blog.cymen.org/2010/02/16/asp-net-mvc-overview-in-vwd-2010-beta-2-create-a-movie-database-application-in-15-minutes-with-asp-net-mvc-c/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=asp-net-mvc-overview-in-vwd-2010-beta-2-create-a-movie-database-application-in-15-minutes-with-asp-net-mvc-c</link>
		<comments>http://blog.cymen.org/2010/02/16/asp-net-mvc-overview-in-vwd-2010-beta-2-create-a-movie-database-application-in-15-minutes-with-asp-net-mvc-c/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 00:59:17 +0000</pubDate>
		<dc:creator>Cymen</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.cymen.org/?p=112</guid>
		<description><![CDATA[I am going to blog about each tutorial mentioning just the issues encountered with VWD 2010 Beta 2 and ASP.NET MVC 2 RC installed. The Model generated using the Microsoft Entity Framework named &#8220;MoviesDBModel.edmx&#8221; did not have MovieSet as in the article but instead Movies1. There is an option in MoviesDBModel.edmx on the properties of [...]]]></description>
			<content:encoded><![CDATA[<p>I am going to blog about each tutorial mentioning just the issues encountered with VWD 2010 Beta 2 and ASP.NET MVC 2 RC installed.</p>
<ol>
<li>The Model generated using the Microsoft Entity Framework named &#8220;MoviesDBModel.edmx&#8221; did not have MovieSet as in the article but instead Movies1. There is an option in MoviesDBModel.edmx on the properties of Movie that has &#8220;Entity Set Name&#8221; defaulting to Movies1 &#8212; that should be changed to MovieSet.
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.cymen.org/2010/02/16/asp-net-mvc-overview-in-vwd-2010-beta-2-create-a-movie-database-application-in-15-minutes-with-asp-net-mvc-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting started with ASP.NET MVC 2 RC 2 on Visual Web Developer (VWD) 2010 Express Beta 2</title>
		<link>http://blog.cymen.org/2010/02/16/getting-started-with-asp-net-mvc-on-visual-web-developer-vwd-2010-express-beta-2/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=getting-started-with-asp-net-mvc-on-visual-web-developer-vwd-2010-express-beta-2</link>
		<comments>http://blog.cymen.org/2010/02/16/getting-started-with-asp-net-mvc-on-visual-web-developer-vwd-2010-express-beta-2/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 00:56:47 +0000</pubDate>
		<dc:creator>Cymen</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://blog.cymen.org/?p=113</guid>
		<description><![CDATA[Download the ISO instead of doing the installs over the net as it is highly likely that more than one installation attempt will be needed to get everything installed. Install Visual Web Developer 2010 Express Beta 2 from ISO (if virtually mounting the disk, make the mount persistent as there is a reboot halfway through [...]]]></description>
			<content:encoded><![CDATA[<p>Download the ISO instead of doing the installs over the net as it is highly likely that more than one installation attempt will be needed to get everything installed.</p>
<ol>
<li>Install Visual Web Developer 2010 Express Beta 2 from ISO (if virtually mounting the disk, make the mount persistent as there is a reboot halfway through the install and if the disk is not present, the install bails).</li>
<li>Uninstall &#8220;Microsoft ASP.NET MVC 2&#8243; but not &#8220;Microsoft ASP.NET MVC 2 &#8211; VWD Express 2010 Tools&#8221;. The VWD 2010 Express Beta 2 comes with a version of ASP.NET MVC that is pre-RC.</li>
<li>Install <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7aba081a-19b9-44c4-a247-3882c8f749e3&#038;displaylang=en">AspNetMVC2_RC2_VS2008.exe</a> (yes, that is the correct version for ASP.NET MVC 2 RC even though it has 2008 in the name).</li>
<li>If &#8220;Microsoft Visual Studio 2010 ADO.NET Entity Framework Tools Beta 2&#8243; does not show up in Add/Remove Programs then force it to install by opening a command prompt and going to the \VWDExpress\wcu\EFTools directory of the CD and running <b>ADONETEntityFrameworkTools_enu.msi USING_EXUIH=1 /log &#8220;dd_ADONETEntityFrameworkTools_enu_MSI.txt&#8221;</b></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.cymen.org/2010/02/16/getting-started-with-asp-net-mvc-on-visual-web-developer-vwd-2010-express-beta-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
