Skip to content

Instantly share code, notes, and snippets.

@doggy8088
Created April 19, 2017 16:52
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 doggy8088/b8cb15ca6e932e644dcf909653d07351 to your computer and use it in GitHub Desktop.
Save doggy8088/b8cb15ca6e932e644dcf909653d07351 to your computer and use it in GitHub Desktop.
Visual Studio 2017 中 ASP.NET MVC 5 專案範本的 \Views\Shared\Error.cshtml 內容錯誤
@model System.Web.Mvc.HandleErrorInfo
@{
ViewBag.Title = "錯誤";
}
<h1 class="text-danger">錯誤。</h1>
<h2 class="text-danger">處理您的要求時發生錯誤。</h2>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width" />
<title>錯誤</title>
</head>
<body>
<hgroup>
<h1>錯誤。</h1>
<h2>處理您的要求時發生錯誤。</h2>
</hgroup>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment