18 lines
493 B
Plaintext
18 lines
493 B
Plaintext
|
@{
|
||
|
ViewBag.Title = "未授权请求";
|
||
|
Layout = "~/Views/Shared/_Root.cshtml";
|
||
|
}
|
||
|
@section css {
|
||
|
<link href="~/css/error.css" rel="stylesheet" />
|
||
|
}
|
||
|
@section Javascript {
|
||
|
<script src="~/js/error.js"></script>
|
||
|
}
|
||
|
<section class="error-wrapper">
|
||
|
<img src="~/images/error_icon.png" />
|
||
|
<h1>网页拒绝访问</h1>
|
||
|
<h3>您无权访问本页面请联系网站管理员授权后再查看</h3>
|
||
|
<br />
|
||
|
<a href="~/Home/Index" target="_top">返回首页</a>
|
||
|
</section>
|