Hi,
If you are familier with javascript code.
Have unique id for each cell, get the text and use querystring to pass the
data to new page.
Example your table contains two cells, in the html page
<td id="game_a">Game A</td>
<td id="game_a_src">100</td>
use javascript code to get the data
cellData = document.all.item('game_a_src').innerText;
and pass the information to the new page
document.location.href='newpage.asp?data='+cellData;
And in the ASP page (newpage.asp),use
<% Response.write(Request("Data")) %>
Hope this Information helps.
Regards
Ravi
MSFT
This posting is provided "as is" with no warranties and confers no rights
--------------------