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

📄 listuser.jsp

📁 自己写的新闻发布系统
💻 JSP
字号:
<%@page contentType="text/html; charset=ISO8859_1" language="java" %>
<%
String news_location="listuser";
%>
<%@ include file="session.jsp" %>
<jsp:useBean id=empire scope="page" class="Eclass.jdbc_sql" />
<%
java.sql.ResultSet rs=null;
rs=empire.query("select login,loginid from enews_admin");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../images/ebb.css" type="text/css">
<title>无标题文档</title>
</head>

<body>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="3370A6">
  <tr> 
    <td width="15%"><div align="center"><font color="#FFFFFF"><strong>用户ID</strong></font></div></td>
    <td width="56%" height="30">
<div align="center"><font color="#FFFFFF"><strong>用户名</strong></font></div></td>
    <td width="29%"><div align="center"><font color="#FFFFFF"><strong>操作</strong></font></div></td>
  </tr>
  <%
  while(rs.next())
  {
  %>
  <tr bgcolor="#FFFFFF"> 
    <td height="25">
<div align="center"><%=rs.getInt("loginid")%></div></td>
    <td height="25">
<div align="center"><a href="AddUser.jsp?action=EditUser&loginid=<%=rs.getInt("loginid")%>"><%=rs.getString("login")%></a></div></td>
    <td height="25">
<div align="center">[<a href="AddUser.jsp?action=EditUser&loginid=<%=rs.getInt("loginid")%>">修改</a>]&nbsp;&nbsp;[<a href="AddUser.jsp?action=DelUser&loginid=<%=rs.getInt("loginid")%>" onclick="return confirm('确认要删除?')">删除</a>]</div></td>
  </tr>
  <%
  }
  %>
</table>
</body>
</html>
<%
rs.close();
empire.closestmt();
empire.closeconn();
%>

⌨️ 快捷键说明

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