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

📄 request_rec.jsp

📁 jsp动态网站开发技术与实践 电子工业出版社 随书附赠源代码
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java"%>
<jsp:useBean class="com.chapter2.ReqBean" scope="request" id="ReqBean"/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
		<title>request范围实例</title>
	</head>
	<body>
	<div  align="center">
	<h1>request范围实例</h1>
	<%	
		String str = request.getParameter("str");
		if(str != null && str != "")
		{
			ReqBean.setString(str);
	%>
			<jsp:forward page="request_do.jsp"/>
	<%
		}
		else
		{
			out.println("<p><font color=red>您没输入任何内容!</font></p>");
		}	
	%>
	</div>
</body>
</html>

⌨️ 快捷键说明

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