FIXME Razor page errors

This commit is contained in:
Paul Schneider
2023-03-20 09:13:16 +00:00
parent 8b607e2606
commit e1812737bd
234 changed files with 859 additions and 856 deletions

View File

@ -1,18 +1,18 @@
@model BlogPost
@{
ViewData["Title"] = @SR["Delete"];
ViewData["Title"] = "Delete";
}
@section Scripts {
@{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); }
}
<h3>@SR["AreYourSureYouWantToDeleteThis"]</h3>
<h3>AreYourSureYouWantToDeleteThis</h3>
<div>
<h4>Blog</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@SR["Author"]
Author"]
</dt>
<dd>
@Model.Author
@ -64,7 +64,7 @@
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
<a asp-action="Index">@SR["Back to List"]</a>
<a asp-action="Index">Back to List</a>
</div>
</form>
</div>
</div>