ch3-5a.jsp

来自「关于jsp方向的seesion代码和cookie代码」· JSP 代码 · 共 29 行

JSP
29
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?