Skip to main content
February 12, 2007
Answered

Submitting Querystring to Frame Page

  • February 12, 2007
  • 6 replies
  • 472 views
I have a photo gallery using a database and need the thumbnail on the left side to open the correct image in the right-hand frame.
The thumbnail link is <A HREF="main.asp?ID=1&folder=01pre" target="mainFrame">
The frameset page has <frame src="main.asp" id="mainFrame">
The link always opens in a new page and I want it to open in the frameset..

If there is a better way to scroll images on the left side and update the main display without resetting the scroller to the top, I'd love to hear it. Also, realize that I am pulling the info from a database.

This worked using one method at http://www.gracetulsa.com/news_motorfest05/pop1.asp but I need to do this a different way now, using a database ( http://gcstulsa.com/0607_stories/ho...2007/combo2.asp ).
This topic is closed to new replies. Start a new post to keep the conversation going.
Correct answer Newsgroup_User
SORRY
I forgot to rename them back to .asp

Try this

Replace:

<frame src="left.asp" id="menuFrame">
<frame src="main.asp" id="mainFrame">

With:

<frame src="left.asp" name="menuFrame">
<frame src="main.asp" name="mainFrame">

Let me know if it works.


"PizzaGood" <PizzaGood@earthlink.com> wrote in message
news:eqqivr$ih5$1@forums.macromedia.com...
> Try replacing this:
>
> <frame src="left.asp" id="menuFrame">
> <frame src="main.asp" id="mainFrame">
>
> With:
>
> <frame src="left.htm" name="menuFrame">
> <frame src="main.htm" name="mainFrame">
>
> Let me know if it works.
>
>
>
>
> "jasonacook" <webforumsuser@macromedia.com> wrote in message
> news:eqqdng$cc4$1@forums.macromedia.com...
>> http://gcstulsa.com/0607_stories/homecoming2007/combo2.asp
>>
>> Thanks for looking
>
>


6 replies

Inspiring
February 12, 2007
Can we see this live?


"jasonacook" <webforumsuser@macromedia.com> wrote in message
news:eqq42i$s7$1@forums.macromedia.com...
>I have a photo gallery using a database and need the thumbnail on the left
>side
> to open the correct image in the right-hand frame.
> The thumbnail link is <A HREF="main.asp?ID=1&folder=01pre"
> target="mainFrame">
> The frameset page has <frame src="main.asp" id="mainFrame">
> The link always opens in a new page and I want it to open in the
> frameset..
>
> If there is a better way to scroll images on the left side and update the
> main
> display without resetting the scroller to the top, I'd love to hear it.
> Also,
> realize that I am pulling the info from a database.
>
> This worked using one method at
> http://www.gracetulsa.com/news_motorfest05/pop1.asp but I need to do this
> a
> different way now, using a database
> ( http://gcstulsa.com/0607_stories/ho...2007/combo2.asp ).
>


February 12, 2007