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

📄 ch3-52.jsp

📁 关于jsp方向的seesion代码和cookie代码
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<html>
<title>取得application 中的数据</title>
<style type="text/css">.STYLE1 {
	font-family: "楷体_GB2312";	font-weight: bold;	font-size: large;	color: #0000FF;}
body {
	background-color: #FFFFCC;
}
</style>
<body>
<%@page import="java.util.*"%>
<%!
 String btimg,text;
 %>
<%
btimg=(String)application.getAttribute("dispimg");
text=(String)application.getAttribute("disptext");
if(btimg==null)
   btimg="img/f.jpg";
if(text==null)
   text="这是滚动示范文字,这是滚动示范文字,这是滚动示范文字,这是滚动示范文字!";

%>
<table width="771" height="466" border="1">
  <tr>
    <td height="113" colspan="4"><img src="<%=btimg%>" width="760" height="119"></td>
  </tr>
  <tr>
    <td width="151" height="42"><div align="center" class="STYLE1">滚动新闻</div></td>
    <td width="604" colspan="3" rowspan="3">&nbsp;</td>
  </tr>
  <tr>
    <td height="132" valign="top" bgcolor="#FFFFFF"><p><MARQUEE scrollamount="1" BGCOLOR="eeffff" DIRECTION=up>&nbsp;&nbsp;&nbsp;&nbsp;<%=text%>
</MARQUEE></p>
    </td>
  </tr>
  <tr>
    <td align="center" valign="middle"><a href="ch3-51.htm">更新管理</a></td>
  </tr>
</table>
<p align="center">&nbsp;</p>
</body>
</html>

⌨️ 快捷键说明

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