We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d2e0ae commit 52a22abCopy full SHA for 52a22ab
MvcCV/Views/Certificates/BringCertificate.cshtml
@@ -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
16
+ <button class="btn btn-primary">Update</button>
17
+ </div>
18
19
0 commit comments