pamela rizk
asked on
create table cells in javascript
i have a table in asp
<table id="mytable" width="100%" cellspacing="2" cellpadding="0" runat="server">
<tr>
<td></td>
</tr>
</table>
and i am creating 3 cells in javascript but on postback this cells are removed
how to maintain them??
<table id="mytable" width="100%" cellspacing="2" cellpadding="0" runat="server">
<tr>
<td></td>
</tr>
</table>
and i am creating 3 cells in javascript but on postback this cells are removed
how to maintain them??
You'll have to recreate them after the post back.
ASKER
k thank you
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
thank you mr julian as usual for your good explanation everytime
You are welcome.
ASKER
this is the best explanation ever