Skip to content

Instantly share code, notes, and snippets.

@A2H111
Created December 30, 2017 00:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save A2H111/ce9e89058478994becd275e0823e82e8 to your computer and use it in GitHub Desktop.
Save A2H111/ce9e89058478994becd275e0823e82e8 to your computer and use it in GitHub Desktop.
@model AspNetCoreMVCMongoDBDemo.Models.Customer
@{
Layout = "_Layout";
}
<h4>Delete Customer</h4>
<div class="row">
<div class="col-md-4">
<form asp-action="Delete">
<label class="control-label">Are you sure to delete </label> <input asp-for="CustomerId" class="form-control" readonly />
<div class="form-group">
<input type="submit" value="Delete" class="btn btn-default" />
</div>
</form>
</div>
</div>
<div>
<a asp-action="Index">Back to List</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment