I'm trying to display a disabled textbox with the value 'FL' in it. Somehow the textbox does not have any value when it is displayed, but it is disabled. How do you display a value in a disabled textbox?
<%= Html.TextBoxFor(model => model.State, new { value="FL", disabled="disabled" }) %>