Hi
Im trying to submit a form , which holds another form tags inside (i must do it this way)
the problem is that this doesn't work on IE, while it works perfect on Firefox
the button seems to have no effect on the page... its like it is not connected to the form....
this is how the page looks like ( i minimized it to show here...)
I did tryed to change the button to input type=submit... but it doesn't work also....
<form name="submitPage" action="package.servletName">
<table border="0" id="tblClass">
<tbody>
<tr>
<td><center>Class ID</center></td>
<td><center>Life Cycle State</center></td>
<td><center>VSSite</center></td>
<td><center>Condition</center></td>
</tr>
<tr>
<td><input type="text" name="reqClassId" value="-" /></td>
<td><input type="text" name="reqLifeCycleState" value="-" /></td>
<td><input type="text" name="reqVSSite" value="-" /></td>
<td><input type="text" name="reqCondition" value="-" /></td>
</tr>
</tbody>
</table>
<form name="ieBad">
<table border="0" id="tblRevision1">
<tbody>
<tr>
<td><center>Event ID</center></td>
<td><center>Event Format</center></td>
<td><center>Event Data</center></td>
</tr>
<tr>
<td><input type="text" name="reqEventID1" value="-" /></td>
<td><input type="text" name="EventFormat1" value="-" /></td>
<td><input type="text" name="reqEventData1" value="-" /></td>
</tr>
</tbody>
</table>
</form>
<button name="Add" value="submit" type="submit" >Add</button>
</form>
Any Ideas?
Thanks ahead!
Daniel