📄 ch3-5a.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<html>
<title>定义application中的数据</title>
<body>
<p>
<%@page import="java.util.*"%>
<%
String myimg=request.getParameter("myimg");
String bt1=request.getParameter("bt1");
String bt2=request.getParameter("bt2");
String bt3=request.getParameter("bt3");
String mytext1=request.getParameter("text1");
String mytext2=request.getParameter("text2");
String mytext3=request.getParameter("text3");
application.setAttribute("dirimg",myimg);
application.setAttribute("bt1",bt1);
application.setAttribute("bt2",bt2);
application.setAttribute("bt3",bt3);
application.setAttribute("dirtext1",mytext1);
application.setAttribute("dirtext2",mytext2);
application.setAttribute("dirtext3",mytext3);
out.print("更新完成。二秒钟后进入更新后的网页<P>");
response.setHeader("Refresh","2;URL=ch3-5b.jsp");
%>
</p>
<p><a href="ch3-5b.jsp">查看</a></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -