Skip to content

Instantly share code, notes, and snippets.

@doggy8088
Last active September 30, 2020 07:20
Show Gist options
  • Save doggy8088/e7f7cb6010cf236a84485121a4c13cfc to your computer and use it in GitHub Desktop.
Save doggy8088/e7f7cb6010cf236a84485121a4c13cfc to your computer and use it in GitHub Desktop.
VS2019 預設 MVC5 專案範本的 Views\Shared\Error.cshtml 錯誤修正
  • 預設內容

    <!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>
  • 修正內容

    @model HandleErrorInfo
    
    <hgroup>
        <h1>錯誤。</h1>
        <h2>處理您的要求時發生錯誤。</h2>
    </hgroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment