I have a textbox that I am defining as
<%= Html.TextBox(\"Username\", Model.Form.Username, new { @class = \"textbox\", @disabled = \"disabled\" }
You can do a workaround by adding a hidden field with the same value ;)
<%= Html.Hidden("Username", Model.Form.Username)%>