可是,现在又有了另外一个问题,就是如何让这个帖子的发帖者删除自己的留言呢?
因为在显示留言的页面successv.jsp中,删除本篇 这个链接是循环的,我如果在这里加上一个if判断,让登录用户删除留言的话,那他也具有管理员的权限了,
while(i<intPageSize && !rs.isAfterLast())
{
%>
<TR bgcolor="black">
<td width="30%"><NOBR><strong><font color=orange>留言时间:</font></strong></NOBR></td>
<td width="70%" ><font color=orange><%=rs.getString("m_date")%></font></td>
</TR>
<TR bgcolor="">
<td width="30%" ><NOBR><strong>姓名:</strong></NOBR></td>
<td width="70%"><%=rs.getString("name")%></td>
</tr>
<TR bgcolor="black">
<TD width="30%" ><NOBR><strong><font color=orange>标题</font></strong></NOBR></TD>
<td width="70%" ><font color=orange><%=rs.getString("title")%></font></td>
</TR>
<TR >
<TD width="30%" ><NOBR><strong>内容</strong></NOBR></TD>
<TD width="70%" ></TD>
</TR>
<TR bgcolor=white><TD width="70%" colspan=2 ><%=rs.getString("content")%></TD>
</TR>
<TR bgcolor=bgcolor><td colspan=2 width="91" height=30></td></TR>
<%
if(user.equals(request.getSession().getAttribute("user"))&& userpass.equals(request.getSession().getAttribute("pass")))
out.println("<TR bgcolor=bgcolor><td colspan=2><a href=delete.jsp?id="+rs.getInt("id")+">删除本篇</a></td></TR>");
rs.next();
i++;
}
}
%>
要怎么实现呢?