scripter73
Programmer
Hi,
I have a page (home.html) that's made up of 3 Frames:
1) Frame A (logs in users and has a link that invokes a page containing two other frames after its clicked).
2) Frame B is a form (to perform a Search) that has a Submit button.
3) Frame C shows the results of that Search.
**********
Question/Goal: How do I hide Frame B, but:
a) still have Frame A create it
b) automatically click the Submit button from Frame B,
so I can get to Frame C.
Here's how my pages are set up:
Home.html
.....
<frameset>
<frame name="lowerleft" src="FrameA.html">
<frame name="lowerright" src="FillerPage.html">
</frameset>
*Note: FillerPage.html will be replaced by
another page, Search.html, when
Home.html is refreshed automatically.
.....
Search.html
.....
<frameset>
<frame name="queryDefine" src="FrameB.html">
<frame name="queryResult" src="FrameC.html">
</frameset>
.....
I think I should also add that FrameB.html form is pre-populated with the information that I want. I just need to automatically click the Submit button. I don't want users to see FrameB.
Thanks in advance for any help you can provide.
scripter73
Change Your Thinking, Change Your Life.
I have a page (home.html) that's made up of 3 Frames:
1) Frame A (logs in users and has a link that invokes a page containing two other frames after its clicked).
2) Frame B is a form (to perform a Search) that has a Submit button.
3) Frame C shows the results of that Search.
**********
Question/Goal: How do I hide Frame B, but:
a) still have Frame A create it
b) automatically click the Submit button from Frame B,
so I can get to Frame C.
Here's how my pages are set up:
Home.html
.....
<frameset>
<frame name="lowerleft" src="FrameA.html">
<frame name="lowerright" src="FillerPage.html">
</frameset>
*Note: FillerPage.html will be replaced by
another page, Search.html, when
Home.html is refreshed automatically.
.....
Search.html
.....
<frameset>
<frame name="queryDefine" src="FrameB.html">
<frame name="queryResult" src="FrameC.html">
</frameset>
.....
I think I should also add that FrameB.html form is pre-populated with the information that I want. I just need to automatically click the Submit button. I don't want users to see FrameB.
Thanks in advance for any help you can provide.
scripter73
Change Your Thinking, Change Your Life.