<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Dynamic Views in ASP.NET MVC 2</title>
	<atom:link href="http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/</link>
	<description>Reflections on technology and web development</description>
	<lastBuildDate>Tue, 24 Jan 2012 15:20:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joe</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-473</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sun, 22 Aug 2010 12:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-473</guid>
		<description>I understand, but I&#039;m just saying how that new way of passing data from the controller/action to the view brings nothing beneficial, except the definition changed a little bit, and you&#039;re spared from defining the model object at the controller/action, while you now have to do it in the view.

I&#039;m frustrated a little because there are tons of problems with a lot of MS components: IE, VS, etc, etc - and instead of spending time fixing them, they invest 300 hours in writing that stupid feature that&#039;s purely syntactic. I learned nothing expect wasting time going through it - while the find-replace box is broken in VS2010 (at least on 2 monitors) and closing individual document in the same IDE is less convinient. WTF?!</description>
		<content:encoded><![CDATA[<p>I understand, but I&#8217;m just saying how that new way of passing data from the controller/action to the view brings nothing beneficial, except the definition changed a little bit, and you&#8217;re spared from defining the model object at the controller/action, while you now have to do it in the view.</p>
<p>I&#8217;m frustrated a little because there are tons of problems with a lot of MS components: IE, VS, etc, etc &#8211; and instead of spending time fixing them, they invest 300 hours in writing that stupid feature that&#8217;s purely syntactic. I learned nothing expect wasting time going through it &#8211; while the find-replace box is broken in VS2010 (at least on 2 monitors) and closing individual document in the same IDE is less convinient. WTF?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-472</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Sat, 21 Aug 2010 23:02:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-472</guid>
		<description>There&#039;s nothing forcing you to use a dynamic view.  The point of this article was to showcase a specific use case of when a dynamic view can get you, and maybe help open the doors to finding some new ones.  The first example used a partial with a strongly typed view, which seems to be what you wanted, so it&#039;s certainly possible (and in most cases, what you&#039;d want to do).</description>
		<content:encoded><![CDATA[<p>There&#8217;s nothing forcing you to use a dynamic view.  The point of this article was to showcase a specific use case of when a dynamic view can get you, and maybe help open the doors to finding some new ones.  The first example used a partial with a strongly typed view, which seems to be what you wanted, so it&#8217;s certainly possible (and in most cases, what you&#8217;d want to do).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-471</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sat, 21 Aug 2010 19:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-471</guid>
		<description>Maybe instead spend that time improving the logic of encoding posts, huh?


Totally unnecessary. Instead of typing this:

[% Control Language=&quot;C#&quot; Inherits=&quot;System.Web.Mvc.ViewUserControl[DynamicViewSample.Models.DateDisplayOptions ]&quot; %]


you have to type this:

[%@ Control Language=&quot;C#&quot; Inherits=&quot;System.Web.Mvc.ViewUserControl[dynamic]&quot; %]

[%
DateDisplayOptions options = (Model as DateDisplayOptions) ?? new DateDisplayOptions();
%]

not to mention that it&#039;s more confusing now, and that we all have to go through at least one article to understand the new mapping (15+ min). What was achieved? Alternative approach. Time well spent. I&#039;m sure hours spent on developing that could have been used for something more useful. Good job, Guthrie!</description>
		<content:encoded><![CDATA[<p>Maybe instead spend that time improving the logic of encoding posts, huh?</p>
<p>Totally unnecessary. Instead of typing this:</p>
<p>[% Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl[DynamicViewSample.Models.DateDisplayOptions ]&#8221; %]</p>
<p>you have to type this:</p>
<p>[%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl[dynamic]&#8221; %]</p>
<p>[%<br />
DateDisplayOptions options = (Model as DateDisplayOptions) ?? new DateDisplayOptions();<br />
%]</p>
<p>not to mention that it&#8217;s more confusing now, and that we all have to go through at least one article to understand the new mapping (15+ min). What was achieved? Alternative approach. Time well spent. I&#8217;m sure hours spent on developing that could have been used for something more useful. Good job, Guthrie!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Monolight</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-358</link>
		<dc:creator>Monolight</dc:creator>
		<pubDate>Wed, 28 Jul 2010 07:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-358</guid>
		<description>Good Post!
Thanks for sharing this cool action to explain it.
Monolight</description>
		<content:encoded><![CDATA[<p>Good Post!<br />
Thanks for sharing this cool action to explain it.<br />
Monolight</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thanigainathan</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-337</link>
		<dc:creator>Thanigainathan</dc:creator>
		<pubDate>Sun, 25 Jul 2010 18:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-337</guid>
		<description>Thanks for sharing this good article.

Thanks,
Thani</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this good article.</p>
<p>Thanks,<br />
Thani</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: progg.ru</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-205</link>
		<dc:creator>progg.ru</dc:creator>
		<pubDate>Mon, 05 Jul 2010 16:18:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-205</guid>
		<description>&lt;strong&gt;Динамические представления в ASP.NET MVC 2...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from progg.ru...</description>
		<content:encoded><![CDATA[<p><strong>Динамические представления в ASP.NET MVC 2&#8230;</strong></p>
<p>Thank you for submitting this cool story &#8211; Trackback from progg.ru&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Morning Brew - Chris Alcock &#187; The Morning Brew #635</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-203</link>
		<dc:creator>The Morning Brew - Chris Alcock &#187; The Morning Brew #635</dc:creator>
		<pubDate>Mon, 05 Jul 2010 07:39:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-203</guid>
		<description>[...] Dynamic Views in ASP.NET MVC 2 - Greg Shackles takes a look at using the new C# dynamic keyword as the type for an ASP.NET MVC Model, allowing your view code to be completely dynamic. [...]</description>
		<content:encoded><![CDATA[<p>[...] Dynamic Views in ASP.NET MVC 2 &#8211; Greg Shackles takes a look at using the new C# dynamic keyword as the type for an ASP.NET MVC Model, allowing your view code to be completely dynamic. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DotNetShoutout</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-190</link>
		<dc:creator>DotNetShoutout</dc:creator>
		<pubDate>Sun, 04 Jul 2010 22:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-190</guid>
		<description>&lt;strong&gt;Dynamic Views in ASP.NET MVC 2...&lt;/strong&gt;

Thank you for submitting this cool story - Trackback from DotNetShoutout...</description>
		<content:encoded><![CDATA[<p><strong>Dynamic Views in ASP.NET MVC 2&#8230;</strong></p>
<p>Thank you for submitting this cool story &#8211; Trackback from DotNetShoutout&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tweets that mention Dynamic Views in ASP.NET MVC 2 « Greg Shackles -- Topsy.com</title>
		<link>http://www.gregshackles.com/2010/07/dynamic-views-in-asp-net-mvc-2/comment-page-1/#comment-187</link>
		<dc:creator>Tweets that mention Dynamic Views in ASP.NET MVC 2 « Greg Shackles -- Topsy.com</dc:creator>
		<pubDate>Sun, 04 Jul 2010 21:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.gregshackles.com/?p=240#comment-187</guid>
		<description>[...] This post was mentioned on Twitter by Greg Shackles. Greg Shackles said: New blog post: Dynamic Views in ASP.NET MVC 2 http://shackl.es/bZ2z4b #dotnet #aspdotnet #mvc #tech [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Greg Shackles. Greg Shackles said: New blog post: Dynamic Views in ASP.NET MVC 2 <a href="http://shackl.es/bZ2z4b" rel="nofollow">http://shackl.es/bZ2z4b</a> #dotnet #aspdotnet #mvc #tech [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced) (user agent is rejected)

Served from: www.gregshackles.com @ 2012-02-05 12:25:39 -->
