Archive for December, 2009

Url Helper Extension Method for ASP MVC in form tags when using IIS 6

Monday, December 21st, 2009

So I was going through some code of codebettercanvas and found it interesting of Karl Seguin using Html Helper extension for his form tags, which has its elegance. e.g ?View Code HTML1 <form id="login" action="!{Html.LinkTo<HomeController>(c => c.Login()) }" method="post"> Basically it calls an extension method called LinkTo with a generic controller and a lamda for [...]

Share