CSSを使用せずにテキストボックスのサイズを設定する方法はありますか(列またはサイズ属性を設定する)?もしそうなら、どのように?
@Html.TextBox("redeemamt", @Model.Amount)
@Html.TextBox("redeemamt", @Model.Amount, new {style = "width: 100px;"})
または、これで試すことができます:
@Html.TextBox("redeemamt", @Model.Amount, new { size = "100" })
Html.TextAreaを探しているようですね。
@Html.TextArea((string)name, (string)value, (int)rows, (int)columns, (object)htmlAttributes)
bootstrap=を追加した場合、入力プロパティを確認して変更できます
例:高さの変更
input[type="text"]
height: 25px;
line-height: 25px;