passing in something like "hi person" into the value of a textbox using either Html.TextBoxFor or Html.EditorFor
unfortunately the value isn't being Html Encoded.. can anyone explain why this is the case and is it fixed in MVC4..
i know you can do something like @Html.TextBox("Description", Server.HtmlDecode(Model.Description)) but is there an out of the box Html Helper that actually just encodes for you?