Linking a cell

H

hagen31

Does anyone know if it is possible to update a cell on one page from a data
field on another page?
 
S

Stefan B Rusynko

Yes
But explain what you are using for data fields and cells and how you want to pass the value (static / dynamic, server side, or
client side)




| Does anyone know if it is possible to update a cell on one page from a data
| field on another page?
 
H

hagen31

This is for an athletic webpage. The value I want to copy is in an html file
and the file changes when it is overwritten after each game. I believe this
will be on the server side and it will be dynamic, becuase it changes after
every game.
 
R

Ravi Anguluri

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

--------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top