Hi all. I have a jsp page that takes a bunch of users and lists them and their user information (firstname lastname etc) in a table.
ie/
Username Firstname Lastname Company StartDate EndDate
ABJ1 John Doe Smith Co 01/01/01 02/02/02
UBL3 Jane Doe Smithe Co 01/01/01 03/02/02
I would like to know the syntax that would enable the user to click on any given username and be taken to the next jsp page where they can edit that user and their given information. Say the next jsp page is called EditUser.jsp.
Here is my excerpt of my code so far. This is all within a while loop that detokenizes a hashtable to retrieve the users information where username is the hashtable key....
%>
<TR valign="top" bgcolor="#CCCCC">
<TD><%= username %></FONT></TD>
<TD><%= userid %></FONT></TD>
<TD><%= u_firstname %></FONT></TD>
<TD><%= u_lastname %></FONT></TD>
<TD><%= u_startdate %></FONT></TD>
<TD><%= u_enddate %></FONT></TD>
<TD><%= company %></FONT></TD>
</TR>
<%
I'd appreciate your help with this.
Thanks,
CrystalVisualBOracle
ie/
Username Firstname Lastname Company StartDate EndDate
ABJ1 John Doe Smith Co 01/01/01 02/02/02
UBL3 Jane Doe Smithe Co 01/01/01 03/02/02
I would like to know the syntax that would enable the user to click on any given username and be taken to the next jsp page where they can edit that user and their given information. Say the next jsp page is called EditUser.jsp.
Here is my excerpt of my code so far. This is all within a while loop that detokenizes a hashtable to retrieve the users information where username is the hashtable key....
%>
<TR valign="top" bgcolor="#CCCCC">
<TD><%= username %></FONT></TD>
<TD><%= userid %></FONT></TD>
<TD><%= u_firstname %></FONT></TD>
<TD><%= u_lastname %></FONT></TD>
<TD><%= u_startdate %></FONT></TD>
<TD><%= u_enddate %></FONT></TD>
<TD><%= company %></FONT></TD>
</TR>
<%
I'd appreciate your help with this.
Thanks,
CrystalVisualBOracle