According to the current web forms 2.0 proposal,<br>"Submit buttons and image controls must only submit the
   first form they are associated with."<br>It would be nice to modify this a bit to:<br>"Submit buttons and image controls must only submit to the first form for each distinct target they are associated with. "
<br>as that would allow multiple submission for better JavaScript disabled forms.  This solves one of the signfiicant issues with frames and iframes, that of not being able to update two of them at the same time.  To do so,
<br><br>frame F1, F2<br><br>Some content contains:<br><br><form target="F1" id="F1Form" /><br><form target="F2" id="F2Form" /><br><br><input type="submit" form="F1 F2" />
<br><br>and this would submit to both F1 and F2, updating both pages.  It would be convenient if this could be controlled as to timing, but parallel submission is fine.<br><br>I know that XLink solves some of this, but it is not well implemented and not consistent despite having been out for quite some time.  It also doesn't work in a pure HTML world.
<br><br>Bill<br>