我有以下剃刀代码:
<td>
<div class="editor-label">
@Html.LabelFor(model => model.AccountCode)
</div>
</td>
<td>
<div class="editor-field">
@Html.EditorFor(model => model.AccountCode)
</div>
</td>
我想将该值硬编码1001
为输入字段的默认值。我试过 [model.accountcode ="1001"]
哪个不起作用。
请用示例代码解释。