I having Trouble in Dividing the HTML frames, I have using following Fields in HTML
<table width=900 border="1" cellspacing="10">
<tr>
<td width="500" height="170">section1 </td>
<td width="400" rowspan=2> section2</td>
</tr>
<tr>
<td width="500" height="400" valign="left">
<div id="response">
</div>
</td>
</tr>
</table>
Its Creating a Table But Problem is response element, It is dynamically loaded. When it loads the sizing of section1 and section2 also changes. Will anybody say alter method dividing variable size frames, which means changing content in section1 should not affect the section 2 and similarly #response element change should not affect the sizing of section1, I hope Any new mnthods to solve these kind of scenario?