I have some javascript code that get data from a sever and then writes it into a table within the same HTML page. After that is done I want to take the values of these javascript values or the table IDs and pass them to an ASP for insertion into a database. I know you cannot pass JS variables to an ASP page but can you pass html <table><TD> IDs to an asp page. OR is there a different way to pass these variables to an ASP page?
my code:
<table border=1>
<tr><td>value:</td>
<td id="tdValue"></td></tr>
</table>
**the "tdValue" is the javascript variable that gets written into the html on that page.
Thanks.