testError.jsp
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:0k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@ page errorPage="error.jsp" %>
  2. <html>
  3. <head>
  4. <title>Untitled</title>
  5. </head>
  6. <body>
  7. 错误测试页面
  8. <% String error = request.getParameter("error");
  9. if( error != null && error.equals("true") ) {
  10. throw new Exception("blah");
  11. }
  12. %>
  13. </body>
  14. </html>