📄 right.jsp~2~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.sql.*"%>
<%@ page import="java.util.List"%>
<%@ page import="com.victor.domain.LinkActionForm"%>
<html>
<head>
<title>右页面</title>
<style type="text/css">
<!--
body {
background-color: #FFFFCC;
}
-->
</style></head>
<body>
<form name="form" method="post" action="keyNewsWatch.do" target="main" onSubmit="return RgTest()">
<p align="center">请输入新闻的关键字
<input type="text" name="key">
<select name="type">
<option value="">请选择新闻类型</option>
<%List list1=(List)request.getAttribute("listType");%>
<%for(int i=0;i<list1.size();i++){
NewsTypeActionForm type1=(NewsTypeActionForm)list1.get(i);
%>
<option value="<%=type1.getTypeName()%>"><%=type1.getTypeName()%></option>
<%}%>
</select>
<input type="submit" name="Submit" value="确认查询">
<a href="main.jsp" target="_parent">返回首页</a> <a href="jsp/managerBack/managerCheck.jsp" target="_parent" onClick="alert('确定进入网页的后台吗!'); return true">进入后台</a></p>
</form>
<%List list=(List)request.getAttribute("link");%>
<div align="center">
<table width="142" border="3" cellspacing="3" cellpadding="3">
<tr>
<td width="136"><div align="center"><a href="voteSelect.do" target="main">年度新闻人物</a></div></td>
</tr>
<tr>
<td width="136"><div align="center"><a href="voteSelectNumber.do" target="main">年度新闻人物投票数量</a></div></td>
</tr>
</table>
<p>
</p>
<table width="220" border="3" cellspacing="3" cellpadding="3">
<tr>
<td colspan="2"><div align="center">友情连接</div></td>
</tr>
<%for (int i=0;i<list.size();i++){
LinkActionForm link=(LinkActionForm)list.get(i);
%>
<tr>
<td width="58"><%=link.getLinkName()%></td>
<td width="131"><%=link.getLinkAddress()%></td>
</tr>
<%}%>
</table>
<blockquote>
<p> </p>
</blockquote>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -