|
Subject:
|
Passing values to a frame
|
|
Posted By:
|
Sach
|
Post Date:
|
11/17/2003 12:11:42 PM
|
Hi
I'm having some problems passing some values from a drop down menu (on page 1) to a results page (page 2). The results page has two frame sets on it. I've tried bringing the values over using request.form method but this does not bring any of the values over into the second frame of page 2.
Is there any way round this little issue or am i stuck??
Cheers in advance.
SAch
|
|
Reply By:
|
planoie
|
Reply Date:
|
11/18/2003 5:47:41 PM
|
So you have 1 page (page1) and it is posting to anothing page (page2) that displays two frames which would then contain page3 and page4?
There's always a way around the problem. 
You could solve this is a couple of ways:
1. The form posts to page2, then page two takes all the values and puts them on the querystring of page3/4 in the frameset. This would carry the values through and you'd be able to grab them from the querystring in the code in page3/4.
2. The first form processing page (Page2) puts all the form values into the session, and page3/4 gets them out of there.
Unless the frameset has already be drawn, there won't be a way to post page1 directly to page3/4.
Peter ------------------------------------------------------ Work smarter, not harder.
|