ch3-52.jsp

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

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