⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 err.jsp

📁 This subproject contains the compiled code for the implementation classes of the Java Servlet and J
💻 JSP
字号:
<html>
<!--
  Copyright (c) 1999 The Apache Software Foundation.  All rights 
  reserved.
-->
<body bgcolor="lightblue">

	<%@ page errorPage="errorpge.jsp" %>
	<jsp:useBean id="foo" scope="request" class="error.Smart" />
	<% 
		String name = null;

		if (request.getParameter("name") == null) {
	%>
	<%@ include file="/error/error.html" %>
	<%
		} else {
		  foo.setName(request.getParameter("name"));
		  if (foo.getName().equalsIgnoreCase("integra"))
		  	name = "acura";
		  if (name.equalsIgnoreCase("acura")) {
	%>

	<H1> Yes!!! <a href="http://www.acura.com">Acura</a> is my favorite car.

	<% 
		  }
		}	
	%>	
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -