Hyperlink

  • Thread starter Thread starter Andrew van Zyl
  • Start date Start date
A

Andrew van Zyl

Hi Folks
How do I code my table so a cell becomes a hyperlink, not
just the contents of a cell?

i.e. I have a table with 3 columns. I want the user to be
able to click anywhere IN A ROW to take him somewhere.

I just can't seem to be able to do it. Any ideas?
 
Thanks for responding Steve

Consider the following table:

<table>
<tr>
<td><%=rs("MyName")%></td>
<td><%=rs("MySurname")%></td>
</tr>
</table>

I want to put a hypelink in both cells to take me to
another page that displays more details on the person
selected.

I don't want to hyperlink the contents, but want to make
it possible for the user to click anywhere inside the row
to take him to the details page instead.

I stuck a small image at the end of the row for users to
click on, but its not really what I want.

Regards, Andrew
 
Back
Top