asp.net mvc model binding
- by mctayl
Hi there Iam using asp.net mvc to do model binding, when I pass a model to a view, I am able to see the model data displayed in the form inside a label,
<%= Html.Label(Model.title) %
<%= Html.Label(Model.description) %
however, I am not able to do the same using
<%= Html.TextArea(Model.description)%
is there a syntax difference between displaying in a label as oppsed tp a textbox