1. 程式人生 > >JSP程式碼練習(八)

JSP程式碼練習(八)

<html>
<head>
<title>Setting HTTP Status Code</title>
</head>
<body>
<%
   // 設定錯誤程式碼,並說明原因
   response.sendError(407, "Need authentication!!!" );
%>
</body>
</html>