14 lines
225 B
Plaintext
14 lines
225 B
Plaintext
@model HandleErrorInfo
|
|
|
|
@{
|
|
ViewBag.Title = "Error";
|
|
if (Model.ControllerName == "CreateLog")
|
|
{
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
}
|
|
|
|
<h2>
|
|
Sorry, an error occurred while processing your request.
|
|
</h2>
|