This is now broken:
<%=Html.TextBox("Name", new Hash(@class => "required"))%>
In Preview 5 the above would bind the value of ViewData.Model.Name to the textbox. This still works:
<%=Html.TextBox("Name")%>
But if you want to specify html attributes, you must also specify the value as follows:
<%=Html.TextBox("Name", ViewData.Model.Name, new Hash(@class => "required"))%>
Actually this is not really safe. If there is any chance ViewData.Model might be null you need to do something like this:
<%=Html.TextBox("Name", ViewData.Model == null ? null : ViewData.Model.Name, new Hash(@class => "required"))%>
This change seems counter to go against the Beta release notes:
"...in order to reduce overload ambiguity...the value parameter was changed from object to string for several helper methods."
They went the opposite way with TextBox.
The value parameter for TextBox used to be string, and it was changed to object. So to avoid ambiguities they had to remove the one overload that I use the most. :(
IMHO, every HTML helper method should have overload overloads that do not force you to specify allow binding in all cases without specifying the valuebut rather rely on binding. Otherwise we will end up with inconsistent view code that will confuse future devs.
