Error.cshtml 320 B

1234567891011121314151617
  1. @model ErrorViewModel
  2. @{
  3. ViewData["Title"] = "Error";
  4. }
  5. <h1 class="text-danger">Error.</h1>
  6. <h2 class="text-danger">An error occurred while processing your request.</h2>
  7. <footer>
  8. @Html.Partial("../Partial/_Footer")
  9. </footer>
  10. @section Scripts{
  11. <script>
  12. showElement('dialogQuit');
  13. </script>
  14. }