<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx</link><description>Update : Please see this newer post for the latest and greatest MVC T4 template &amp;#160; Earlier this week, I wrote a post on using a BuildProvider to create ActionLink helpers .&amp;#160; That approach was using CodeDom to generate the code, and there was</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>
	ASP.NET MVC Archived Buzz, Page 1
</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9700975</link><pubDate>Fri, 05 Jun 2009 10:30:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9700975</guid><dc:creator>
	ASP.NET MVC Archived Buzz, Page 1
</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://aspdotnetmvc.com/buzz/default.aspx"&gt;http://aspdotnetmvc.com/buzz/default.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9702183</link><pubDate>Sat, 06 Jun 2009 01:45:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9702183</guid><dc:creator>What's New</dc:creator><description>&lt;p&gt;Earlier this week, I wrote a post on using a BuildProvider to create ActionLink helpers .&amp;amp;#160; That&lt;/p&gt;
</description></item><item><title>re: A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9702306</link><pubDate>Sat, 06 Jun 2009 02:54:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9702306</guid><dc:creator>pat</dc:creator><description>&lt;p&gt;Nice! Is there a way to invoke this as a post build step and not through web.config?&lt;/p&gt;</description></item><item><title>re: A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9702321</link><pubDate>Sat, 06 Jun 2009 03:03:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9702321</guid><dc:creator>davidebb</dc:creator><description>&lt;p&gt;Pat, the mechanism used here (BuildProvider and ControlBuilder) only exist at ASP.NET runtime, so there is no easy way to do it in a post build step. &amp;nbsp;But there are some related approaches that process the T4 files at build time that are worth investigating as well.&lt;/p&gt;
</description></item><item><title>David Ebbo's blog : A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9702464</link><pubDate>Sat, 06 Jun 2009 06:01:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9702464</guid><dc:creator>DotNetBurner - ASP.net MVC</dc:creator><description>&lt;p&gt;DotNetBurner - burning hot .net content&lt;/p&gt;
</description></item><item><title>re: A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9702890</link><pubDate>Sat, 06 Jun 2009 19:07:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9702890</guid><dc:creator>Tad</dc:creator><description>&lt;p&gt;Is it possible to make these helpers act as a fluent interface ?&lt;/p&gt;
&lt;p&gt;for example:&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;lt;%=ViewModel.Age.Label().TextBox().Validation() %&amp;gt;&lt;/p&gt;
&lt;p&gt;?&lt;/p&gt;
</description></item><item><title>re: A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9703052</link><pubDate>Sat, 06 Jun 2009 23:14:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9703052</guid><dc:creator>davidebb</dc:creator><description>&lt;p&gt;Tad, the problem I see with this fluent approach is that it would output the three pieces of UI right one after the other, whereas in practice you may want them separated by some random HTML.&lt;/p&gt;
&lt;p&gt;As far as whether it's possible, I think it should be by generating the write glue. &amp;nbsp;Basically, if you can write helpers by hand that will do this, you can write a T4 template that will generate such helper!&lt;/p&gt;
</description></item><item><title>re: A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9703877</link><pubDate>Sun, 07 Jun 2009 13:35:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9703877</guid><dc:creator>jcliff</dc:creator><description>&lt;p&gt;A wonderful approach! - Such a shame Intellisense is not available when using ReSharper :(&lt;/p&gt;
</description></item><item><title>re: A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9703895</link><pubDate>Sun, 07 Jun 2009 13:52:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9703895</guid><dc:creator>jcliff</dc:creator><description>&lt;p&gt;Ref: Resharper Intellisense&lt;/p&gt;
&lt;p&gt;Pressing Ctrl+8 to enable/disable code analysis in &lt;/p&gt;
&lt;p&gt;current file will allow you to benefit from Intellisense :)&lt;/p&gt;
</description></item><item><title>re: A T4 based approach to creating ASP.NET MVC strongly typed helpers</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9704263</link><pubDate>Sun, 07 Jun 2009 17:28:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9704263</guid><dc:creator>davidebb</dc:creator><description>&lt;p&gt;jcliff: glad to hear that! &amp;nbsp;So I take it doing this switches back to the standard VS intellisense engine instead of ReSharper's.&lt;/p&gt;
</description></item><item><title>A T4 based approach to creating ASP.NET MVC strongly typed helpers - David Ebbo</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9708538</link><pubDate>Mon, 08 Jun 2009 20:13:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9708538</guid><dc:creator>DotNetShoutout</dc:creator><description>&lt;p&gt;Thank you for submitting this cool story - Trackback from DotNetShoutout&lt;/p&gt;
</description></item><item><title>A new and improved ASP.NET MVC T4 template</title><link>http://blogs.msdn.com/davidebb/archive/2009/06/04/a-t4-based-approach-to-creating-asp-net-mvc-strongly-typed-helpers.aspx#9769643</link><pubDate>Wed, 17 Jun 2009 18:34:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9769643</guid><dc:creator>David Ebbo's blog</dc:creator><description>&lt;p&gt;A couple weeks ago, I blogged about using a Build provider and CodeDom to generate strongly typed MVC&lt;/p&gt;
</description></item></channel></rss>