zoukankan      html  css  js  c++  java
  • TIPS: Error handling in ASP.Net 2.0

    TIPS: Error handling in ASP.Net 2.0

     

    Posted by: Rickie Lee http://rickie.cnblogs.com

    In order to avoiding generating an ugly error message to end users, we can handle it in two ways.

    1. Add a custom error page to web site. When an unhandled error occurs, a user-friendly web page will come and ask the users to come back later.

     

    2. Add a Global.asax file into web site, where you can add log this kind of errors.

     

    Follows the following steps to take care:

    1. Modify Application_Error method in Global.asax file like this:
        void Application_Error(object sender, EventArgs e)

        {

            // Code that runs when an unhandled error occurs

            // Log all unhandled errors

           

    }

     

    2. Config web.config file, add a new child of the <system.web> element:
        <customErrors mode="RemoteOnly" defaultRedirect="BasePage/Error.aspx" />

    3. Add a user-friendly error-handling web page, which appears when an unhanlded error happens.

    Add some conent like this:

    Your request generated an internal error!

    We apologize for the inconvenience! The error has been reported.

    Thanks for accessing http://rickie.cnblogs.com web site!

     

     

  • 相关阅读:
    请输出in.txt文件中的2 4 6 8 9 10 12行
    shell 求总分
    快速排序小结
    串的模式匹配和KMP算法
    重定向和转发的区别
    servlet中文乱码问题
    JAXP简介
    DOM常用方法总结
    初探javascript
    现在网站主流排版方式
  • 原文地址:https://www.cnblogs.com/rickie/p/364114.html
Copyright © 2011-2022 走看看