This code does not work:
<FORM>
<DIV ID="firstLayer">
<INPUT TYPE="Text" NAME="Input1" SIZE="20">
</DIV>
<DIV ID="secondLayer">
<INPUT TYPE="Text" NAME="Input2" SIZE="20">
</DIV>
</FORM>
The solution is to put a form inside each layer:
<DIV ID="firstLayer">
<FORM NAME="form1">
<INPUT TYPE="Text" NAME="Input1" SIZE="20">
</FORM>
</DIV>
<DIV ID="secondLayer2">
<FORM NAME="form2">
<INPUT TYPE="Text" NAME="Input2" SIZE="20">
</FORM>
</DIV>
Business Objects http://www.businessobjects.com/ Support services http://www.businessobjects.com/services/support/ |