錯誤處理 跳轉頁面

2022-01-15 23:09:48 字數 2499 閱讀 8388

我們經常遇到很多**在出錯時不報黃屏,而是跳轉到了乙個錯誤頁面,那麼這個效果如何實現的呢?請看下面→_→ 

第一種實現:

1.首先在global裡面將filterconfig轉到定義將filters.add(new handleerrorattribute());這段**注釋掉

2.在webconfig裡面進行配置

"

on" defaultredirect="

~/home/error1

">

"404" redirect="

~/home/error2

"/>

"500" redirect="

~/home/error3

"/>

第二種實現:

1.首先在global裡面將filterconfig轉到定義將filters.add(new handleerrorattribute());這段**改為 filters.add(new myexpressionattribute());

2.新增自定義實現:(ps:這個跳轉的錯誤頁路徑一定要對,不然會因導致404錯誤進而實現不了想要的結果)

public

class

myexpressionattribute : handleerrorattribute

}

--------還可以自己寫乙個過濾器類,然後加標記就行了

public

class

errorattribute : actionfilterattribute, iexceptionfilter

}

1.在global.asax.cs實現如下:

using

system;

using

system.collections.generic;

using

system.linq;

using

system.web;

using

system.web.security;

using

system.web.sessionstate;

using

system.text;

using

net.itcast.cn.ashx.crud.utiliy;

namespace

請求流程

protected

void session_start(object

sender, eventargs e)

protected

sender, eventargs e)

protected

sender, eventargs e)

//頁面出錯時執行的方法

protected

sender, eventargs e)

"-------------出錯客戶端ip:

" + context.request.userhostaddress + "

-----------");

//3.把錯誤的字串傳遞給對應的記錄日誌的方法

loghelper.logenqueue(sblogtext.tostring());

context.response.redirect(

"~/myerrorpage.aspx

");//

跳轉到錯誤介面

}

protected

void session_end(object

sender, eventargs e)

protected

sender, eventargs e)

}}

上面用到的loghelper實現如下:

using

system;

using

system.collections.generic;

using

system.linq;

using

system.text;

using

system.threading;

using

system.web;

using

system.io;

namespace

net.itcast.cn.ashx.crud.utiliy

else

}if(isqueueempty)

else

if (exmsg != null

)

}}));

twritelog.isbackground = true

; twritelog.start();

}//向佇列中寫入資料

public

static

void logenqueue(string

logtxt)}}

}

錯誤處理機制跳轉錯誤頁面

錯誤處理機制 string errorinfo url ctx.request.rawurl.tostring source exception.source message exception.message if m.contains 不存在 錯誤處理機制 要的趕緊貼上到記事本 就寫乙個方法,頁...

配置全域性錯誤處理頁面

當jsp程式出現異常時,往往是直接輸出到瀏覽器頁面上的,這樣以來,可能使終端使用者感到不知所措,也可能因為暴露伺服器某些資訊而導致伺服器的安全性問題。在jsp裡我們可以通過制定errorpage 以使當程式出現錯誤時轉向指定的錯誤頁面,但如果前期沒有考慮到這個辦法而在系統完成後再去這些工作則工作量可...

springboot定製錯誤處理頁面

springboot錯誤頁面處理 結構如下 在template資料夾下新建error資料夾 在error新建4xx.html檔案和5xx.html檔案 2.新建hellocontroller 和 login.html hellocontroller類 login.html頁面 3.錯誤 timest...