[RESOLVED] put div into another
i need to create div on run time in such a manner as it creat table at run time,(table is also in another div) .
all my rows in table like this (for example)
Code:
<div class="right_txt_space_accm">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20%" align="left"><strong>State:</strong></td>
<td width="10%" align="left"><strong></strong></td>
<td width="70%" align="left"><strong></strong>
<asp:TextBox ID="txt_state" runat="server"></asp:TextBox>
<img valign=""top" src="img/star2.jpg" width="12" height="8"><asp:RequiredFieldValidator
ID="RequiredFieldValidator6" runat="server" ControlToValidate="txt_state"
ErrorMessage="Please fill in the 'State' box"></asp:RequiredFieldValidator>
</td>
</tr>
</table>
</div>
so i need another div created at run time but its ?UI should match to my rest of project and should not cross </form >
let me tell u one more thing above div is sub div of many other divs .how i will access how to add runtime to design time div???do let me know if need to know further
Thanks