我在 WebForms 上有一个系统,我从数据库中加载了文本字段,并通过 ID 轻松为每个字段选择了正确的位置,但是在 cshtml 中我考虑了最好的方法,我检查 [DisplayName("foo bar") ] 在模型上,但我需要完成 Web 的其他常用按钮,所以我很尴尬我需要看到很多代码才能正常工作,也许我对我的概念有误。有什么想法或最好的方法吗?谢谢。 每个用户都需要随时选择更改按钮、标签、....的名称。数据库已准备好使用。
网络领域
<div class="editor-label">
@Html.LabelFor(model => model.DataInicioAcesso)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.DataInicioAcesso)
@Html.ValidationMessageFor(model => model.DataInicioAcesso)
</div>
和
<li>@Html.ActionLink("Acesso_Usuario ", "Index", "Acesso_Usuario")</li>
和
<input type="submit" value="Create" />
和其他人......我已经配置了一个 SessionPermissionLogin 。所以我希望每个人都阅读不同的文本。