gpt4 book ai didi

java - 如何从使用jsp从数据库打印的表中删除特定用户行

转载 作者:行者123 更新时间:2023-11-30 00:03:15 25 4
gpt4 key购买 nike

在我的动态网站中,我正在编写有关管理员的部分。他可以查看所有注册用户并可以删除其中一个或多个。问题是我不明白如何传递特定的用户 ID。

我的代码是:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

<table border="1">
<thead><tr>
<th>NAME</th>
<th>SURNAME</th>
<th>USERSID</th>
<th>USERNAME</th>
<th>PASSWORD</th>
<th>EMAIL</th>
<th>ROLE</th>
<th>ACTIONS</th>
</tr>
</thead>

<tbody>
<%
Vector<String[]> risultati = AmministratoreDAO.getInstance().getListUsers();

//prova
String riga2 = "0";

if(risultati.size()>0)
{
for(int i=0; i<risultati.size(); i++)
{
String[] riga = risultati.get(i);
out.print("<tr>");


riga2 = riga[2];
session.setAttribute("codicefiscale", riga2);

for(int j=0; j < riga.length; j++)
{
out.append("<td>" + riga[j] + " </td>");
}


out.print(" <td><a href='AdminDeleteUser.jsp'?id=+riga[2]> cancellare</a></td>");
out.print("</tr>");
}
}else{
out.print("NON CI SONO RISULTATI");
}
%>

</tbody>

</table>

</body>
</html>

最佳答案

out.print(" <td><a href='AdminDeleteUser.jsp'?id=+riga[2]> cancellare</a></td>"); 
==================================================================================
instead of you should write like this
out.print(" <td><a href='AdminDeleteUser.jsp?id=riga[2]'> cancellare</a></td>");

现在获取id

String str=request.getParameter("id");

关于java - 如何从使用jsp从数据库打印的表中删除特定用户行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24841094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com