Skip to content

Commit 52a22ab

Browse files
18th commit
Updating certificate
1 parent 8d2e0ae commit 52a22ab

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
@model MvcCV.Models.Entity.TBLAWARDS
2+
@{
3+
ViewBag.Title = "BringCertificate";
4+
Layout = "~/Views/Shared/_MainLayout.cshtml";
5+
}
6+
7+
@using (Html.BeginForm("UpdateCertificate", "Certificates", FormMethod.Post))
8+
{
9+
<div class="form-group">
10+
@Html.LabelFor(m => m.ID)
11+
@Html.TextBoxFor(m => m.ID, new { @class = "form-control" })
12+
<br />
13+
@Html.LabelFor(m => m.AWARD)
14+
@Html.TextBoxFor(m => m.AWARD, new { @class = "form-control" })
15+
<br />
16+
<button class="btn btn-primary">Update</button>
17+
</div>
18+
}
19+

0 commit comments

Comments
 (0)