Razor を使用してテキスト ボックスを作成し、value
次のように設定しようとしました。
@Html.TextBoxFor(model => model.Destination, new { id = "txtPlace", value= "3" })
私は追加しようとvalue
しました@
@Html.TextBoxFor(model=> model.Destination, new { id = "txtPlace", @value= "3" })
input
空のhtmlタグをレンダリングしてもvalue
<input id="txtPlace" name="Destination" type="text" value
class="ui-input-text ui-body-c ui-corner-all ui-shadow-inset ui-mini" >
何が間違っていますか?