📄 manage_news_file.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@ include file="conn.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>文件管理</title>
<script language="javascript">
function isok()
{
if(confirm("确认删除? 对应该专家的所有信息也将同时删除!"))
{return true;}
else
{return false;}
}
</script>
</head>
<body background="img/beijing.gif">
<jsp:include page="Menu.jsp" flush="true"/>
<br>
<table width="652" border="1" align="center">
<tr>
<td colspan="2"> <div align="center">标题 </div></td>
<td width="79"><div align="center">日期</div></td>
<td width="109"><div align="center">修改操作</div></td>
<td width="126"><div align="center">删除操作</div></td>
</tr>
<%
String FileSQL="select * from S_fileInfor order by file_id desc";
rs=stmt.executeQuery(FileSQL);
rs.beforeFirst();
while(rs.next())
{
String File_ID=rs.getString("file_id");
String File_Title=rs.getString("file_title");
String File_Date=rs.getString("file_date");
String File_Name=rs.getString("file_name");
%>
<tr>
<td width="24"><div align="center"><%= File_ID %></div></td>
<td width="280"><%= File_Title %></td>
<td><%= File_Date %></td>
<td><div align="center"><a href="Edit_file.jsp?id=<%= File_ID %>">修改</a></div></td>
<td><div align="center"><a href="news_add_operate_1.jsp?EditType=fileDel&id=<%= File_ID %>&file=<%=File_Name%>">删除</a></div></td>
</tr>
<% } %>
</table>
<p> <a href="news.jsp">返回个人相册</a> </p>
</body>
<%
rs.close();
rs=null;
stmt.close();
conn.close();
%>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -