?? linkselect.jsp
字號:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page import="java.util.List"%>
<%@ page import="java.sql.*"%>
<%@ page import="com.victor.domain.LinkActionForm"%>
<html>
<head>
<title>鏈接信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
td{
font-size:9pt;
}
.style1 {
color: #FF9900;
font-weight: bold;
}
-->
</style></head>
<script Language="JavaScript">
function projectDelete(date){
if(confirm("是否刪除流水號為["+date+"]的一組數(shù)據(jù)嗎?"))
window.location="linkDeleteAction.do?ID="+date;
}
</script>
<%List list=(List)request.getAttribute("linkList");%>
<body>
<table width="568" height="419" border="0" cellpadding="2" cellspacing="1" bgcolor="#052754">
<tr>
<td align="center" valign="top" bgcolor="#FFFFFF">
<p class="style1"><br>
<br>
<br>
鏈接信息</p>
<table width="510" border="0" cellpadding="2" cellspacing="1" bgcolor="#052754">
<tr align="center" bgcolor="#0099cc">
<td width="35" height="24">ID</td>
<td width="113">鏈接網(wǎng)站名稱</td>
<td width="86">鏈接的地址</td>
<td width="73">發(fā)布時間</td>
<td width="86">操作</td>
</tr>
<%for(int i=0;i<list.size();i++){
LinkActionForm linkActionForm=(LinkActionForm)list.get(i);
%>
<tr bgcolor="#ffffff">
<td height="24"><%=linkActionForm.getLinkID()%></td>
<td><%=linkActionForm.getLinkName()%></td>
<td><%=linkActionForm.getLinkAddress()%></td>
<td><%=linkActionForm.getLinkIssueDate()%></td>
<td align="center"><a href="linkSelectOneAction.do?ID=<%=linkActionForm.getLinkID()%>">修改</a> <a href="javascript:projectDelete('<%=linkActionForm.getLinkID()%>')">刪除</a></td>
</tr>
<%}%>
</table>
<p><a href="jsp/managerBack/linkManager/linkInsert.jsp"><font style="font-size:9pt;">添加鏈接信息</font></a></p> </td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -