Hi,
when we use this form :
<table>
<form action="/prospect.asp" method="post">
<input name="i_action" type="hidden" value="1" /><input name="i_type" type="hidden" value="Echo_Sante___5_methodes_douces" />
<tr>
<td>Prénom: </td>
<td><input name="prenom" type="text" maxlength="50" /></td>
</tr>
...
</form>
</table>
and we clic on 'Normal', and return to 'HTML' thje code change for:
<table>
<form action="/prospect.asp" method="post">
</form>
<input name="i_action" type="hidden" value="1" /><input name="i_type" type="hidden" value="Echo_Sante___5_methodes_douces" />
<tr>
<td>Prénom: </td>
<td><input name="prenom" type="text" maxlength="50" /></td>
</tr>
...
</table>
Why </form> go under <form action="/prospect.asp" method="post"> ?
Thanks
Michel Morin