I need to change the size of textbox :
@Html.SimpleTextBoxFor(m => ((ModifiableProperty<string>)m).Value.TheCurrentValue, new { id = fieldId})
I tried this
@Html.SimpleTextBoxFor(m => ((ModifiableProperty<string>)m).Value.TheCurrentValue, new { id = fieldId, @maxlength = "100" })
but doesn’t work.
You can try this too :
Just change the 200px value for the size you want.
For maxlength I use the same syntax as you and it is working for me.