欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JSP errorPage設(shè)置方法

 更新時(shí)間:2009年10月04日 15:46:32   作者:  
JSP errorPage設(shè)置方法,大家可以參考下。
1.設(shè)置errorPage:errorPage.jsp
復(fù)制代碼 代碼如下:

<%@page isErrorPage="true"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
Error~!
<%=exception.getMessage()%>
</body>
</html>

2.應(yīng)用
復(fù)制代碼 代碼如下:

<%@page info="Bad page"%>
<%@page errorPage="errorPage.jsp" %> //出錯(cuò)后轉(zhuǎn)到
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
boolean tf = true;
if(tf){
String info = getServletInfo();
throw new Exception("Exception in:" + info);
}
%>
</body>
</html>

相關(guān)文章

最新評(píng)論