joey o.
Oct 11th, 2000, 12:51 PM
Let's say I've got this table already produced by a database query:
<table border>
<tr>
<td>Data Text1
<td>Data Text2
<td>Data Text3
<tr>
<td>Data Text1A
<td>Data Text2A
<td>Data Text3A
</tr>
</table>
How do I make these cells editable so I can call some more ASP which will append the text to the existing data so the next time I see the table Text1,2,3,1A... is now "Text1 and stuff I added", "Text2 and stuff I added after adding to Text1"... I don't want to use any controls.
<table border>
<tr>
<td>Data Text1
<td>Data Text2
<td>Data Text3
<tr>
<td>Data Text1A
<td>Data Text2A
<td>Data Text3A
</tr>
</table>
How do I make these cells editable so I can call some more ASP which will append the text to the existing data so the next time I see the table Text1,2,3,1A... is now "Text1 and stuff I added", "Text2 and stuff I added after adding to Text1"... I don't want to use any controls.