ASP.NET 页面404设置

Web.config

<system.webServer>
    <!--404-->
    <httpErrors errorMode="Custom" existingResponse="Replace">
      <remove statusCode="404"/>
      <error statusCode="404" responseMode="ExecuteURL" path="/404.aspx"/>
    </httpErrors>
  </system.webServer>

404.aspx
<%@ Page Language="C#"%>

<script runat="server">
    /// <summary>
    /// 页面载入
    /// </summary>
    protected void Page_Load(object sender, EventArgs e)
    {
        Response.Status = "404 Not Found";
    }
</script>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>404 Not Found</title>
</head>
<body>
   404 Not Found
</body>
</html>


作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角