You have to give names for frames.
<frame name="fra_one" ...............>
<form .......></form>
</frame>
<frame name="fra_two" ...............></frame>
Then in the form tag give the target attribute with value as the name of the form. Like
<form target="fra_two"></form>
|