März 2009 - Einträge

0
Comments

ASP.Net MVC extending Html Helper Class von ThorstenHans

The Html class was shipped with ASP.Net MCV Framework. This class provides lots of functions to render controls to the view and support you to do common tasks without writing dirty html. Here are some of the Html class’s functions Html.ActionLink Html...
Abgelegt unter:
0
Comments

ASP.Net MVC RC1: Getting Checkbox value von ThorstenHans

As I started ASP.Net MVC developing, it was a little bit confused for me how to get a Checbox value (true or false) from the View to the Controller. To include a Checkbox into a View you must use the HtmlHelper. <%=Html.CheckBox( "isActive"...
Abgelegt unter: ,
0
Comments

ASP.Net MVC: Routes von ThorstenHans

What are Routes? Routes define the structure of an url within a ASP.Net MVC. In ASP.Net MVC a url does not match a physical file on a harddisk, the url will be transformed into an controller action. Routes are defined in the global.asax file. The default...
Abgelegt unter: , , ,