1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| // dans ma vue
<div class="editor-label">
<%: Html.Label("entrez une note") %>
</div>
<div class="editor-field">
<%: Html.TextBox(model => model.Note) %>
<%: Html.ValidationMessageFor(model => model.Note) %>
</div>
<div class="editor-label">
<%: Html.LabelFor("coefficient") %>
</div>
<div class="editor-field">
<%: Html.DropDownList("Coef") %>
</div>
<div class="editor-label">
<%: Html.LabelFor("note coefficiée") %>
</div>
<div class="editor-field">
<%: Html.TextBox() %>
</div> |