Hi Donald,
If I understand ur Question right this is what u want.
Eg:
U display the ID Name and Address which is a result of a Query.
Now when u click on the Id ,probably u want that id's some other details(say if it is a custome, u want his balance details).Right...
If this was ur question then u can pass the ID appended with the Query string.
Proceed in the following way..
Run a loop through the result set
Display the id as follows
<tr>
<td><a href="Balance.jsp?Id = <%out.println(str_Id);%>"> <%out.println(str_Id);%>
</href>
</td>
<td><%out.println(str_Name);%></td>
<td><%out.println(str_Address);%></td>
</tr>
</tr>
Now when u click on the ID the corresponding jsp,page will be called.
There u can call your beans get method using this id as a parameter.
Hope it helps...
:roll:

[ February 05, 2002: Message edited by: Hari Haran ]