在asp.net mvc 中,action方法里根據參數獲取數據,假如獲取的數據爲空,爲了響應404錯誤頁,咱們能夠return HttpNotFound(); 可是在asp.net webform中,實現方式就不同了。html
爲了體現本人在實現過程當中的所遇到的問題,現舉例來講明。web
1. 在asp.net webform 中,新建一個WebForm1.aspx文件,WebForm1.aspx代碼以下:mvc
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="PageNotFoundDemo.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body> 當你看到這行文字時,表示訪問正常! </body>
</html>
瀏覽時會顯示以下的效果:asp.net
如今須要實現傳參id,若是id=3時獲取不到數據,響應404工具
WebForm1.aspx.cs文件以下:ui
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace PageNotFoundDemo { public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string id = Request.QueryString["Id"]; if (id == "3") { Response.StatusCode = 404; HttpContext.Current.ApplicationInstance.CompleteRequest(); } } } }
訪問以後發現,仍是顯示了文字「當你看到這行文字時,表示訪問正常!」,而開發人員工具中監視的響應狀態碼是404。spa
這不是我想要的效果,我想要的效果以下(相似訪問一個不存在的資源時響應的404錯誤頁):.net
該問題困擾了我好久,甚至有查找過資料是經過配置Web.Config自定義成錯誤頁去實現,可是與我想要的效果不一致,我想要的效果是響應默認的IIS (或IISExpress)中的404錯誤頁。code
某天也是在找該問題的解決方案,不經意間找到了解決方法:orm
Response.StatusCode = 404; Response.SuppressContent = true; HttpContext.Current.ApplicationInstance.CompleteRequest();
Response.SuppressContent的解釋以下:
修改後webform1.aspx.cs的代碼以下:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace PageNotFoundDemo { public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string id = Request.QueryString["Id"]; if (id == "3") { Response.StatusCode = 404; Response.SuppressContent = true; HttpContext.Current.ApplicationInstance.CompleteRequest(); } } } }
編譯,再次訪問,效果以下: