Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @using (Html.BeginForm())
- {
- <div class="form-group">
- @Html.Label(labelText: "First Name", expression: "firstName")
- @Html.TextBox("firstName", value: "", htmlAttributes: new { @class = "form-control" })
- </div>
- <div>
- <input type="submit" value="Add" class="btn btn-secondary" />
- </div>
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement