Tuesday, August 28, 2012

MVC: set Default value in Html.TextboxFor Helper In Asp.Net MVC 2

Html.TextBoxFor in MVC 2 doesn't allow the setting of the value property using the object html attributes.
syntax - 
<%= Html.TextBoxFor(model => model.city, new { maxlength = "40" })%>

If you need to set a default value on a textbox field, you need to use the old 

syntax - 
<%= Html.TextBox("city", "New Delhi", new { maxlength = "40" })%>

No comments:

Post a Comment

Hash Table in C#

 The Hashtable is a non-generic collection and used to store the key/value pairs based on the hash code of the key. Key will be used to acce...