Hello,
At the moment I am outlining a form built with a table. To make the <tr> able to have a different number of <td> I tried to work with a 'table in a table' and for the first layer this works, now I am trying this trick (a table in a table in a table) again and it doen not work (though I think this second 'table in a table' is not necessary).
part of the code which is outlined perfect:
<tr>
<td width="20%" align="right" valign="top">Vindplaats Bijvoegsel</td>
<td width="3%" align="right"> </td>
<td><table width="100%" border="1"><tr>
<td width="30%" valign="top"><input type="text" name="schut_txtVindplAdvies" value="<%=schut_objRs.fields("vpadvies"%>" size="10"></td>
<td width="37%" align="right">Datum/Nr. Staatsblad iwtr</td>
<td width="3%"> </td>
<td width="15%"><input type="text" name="datDatumStaatblIwtr" value="<%=schut_objRs.fields("datstaatsbliwtr"%>" size="11"></td>
<td width="15%"><input type="text" name="intNrStaatsblIwtr" value="<%=schut_objRs.fields("nrstaatsbliwtr"%>" size="5"></td>
</tr></table></td>
</tr>
the following part of html stands under this code and this part is not shown the way I want:
<tr>
<td width="20%" align="right" valign="top">Vindplaats kamerstuk</td>
<td width="3%" align="right"> </td>
<td><table width="100%" border="1"><tr>
<td width="30%" valign="top"><input type="text" name="schut_txtVindplStuk" value="<%=schut_objRs.fields("vpgedrstuk"%>" size="20"></td>
<td width="37%" align="right">Tractatenblad</td>
<td width="3%"> </td>
<td width="30%"><input type="text" name="schut_txtTractBlad" value="<%=schut_objRs.fields("tractatenbl"%>" size="16"></td>
</tr></table></td>
</tr>
The frustrating part is that it just seems that the second tr is shown at a kind of randomnes.
Thanks, Mariootje
At the moment I am outlining a form built with a table. To make the <tr> able to have a different number of <td> I tried to work with a 'table in a table' and for the first layer this works, now I am trying this trick (a table in a table in a table) again and it doen not work (though I think this second 'table in a table' is not necessary).
part of the code which is outlined perfect:
<tr>
<td width="20%" align="right" valign="top">Vindplaats Bijvoegsel</td>
<td width="3%" align="right"> </td>
<td><table width="100%" border="1"><tr>
<td width="30%" valign="top"><input type="text" name="schut_txtVindplAdvies" value="<%=schut_objRs.fields("vpadvies"%>" size="10"></td>
<td width="37%" align="right">Datum/Nr. Staatsblad iwtr</td>
<td width="3%"> </td>
<td width="15%"><input type="text" name="datDatumStaatblIwtr" value="<%=schut_objRs.fields("datstaatsbliwtr"%>" size="11"></td>
<td width="15%"><input type="text" name="intNrStaatsblIwtr" value="<%=schut_objRs.fields("nrstaatsbliwtr"%>" size="5"></td>
</tr></table></td>
</tr>
the following part of html stands under this code and this part is not shown the way I want:
<tr>
<td width="20%" align="right" valign="top">Vindplaats kamerstuk</td>
<td width="3%" align="right"> </td>
<td><table width="100%" border="1"><tr>
<td width="30%" valign="top"><input type="text" name="schut_txtVindplStuk" value="<%=schut_objRs.fields("vpgedrstuk"%>" size="20"></td>
<td width="37%" align="right">Tractatenblad</td>
<td width="3%"> </td>
<td width="30%"><input type="text" name="schut_txtTractBlad" value="<%=schut_objRs.fields("tractatenbl"%>" size="16"></td>
</tr></table></td>
</tr>
The frustrating part is that it just seems that the second tr is shown at a kind of randomnes.
Thanks, Mariootje