dynamic menu system going to dynamic page

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default dynamic menu system going to dynamic page

    please can someone help me - im at the end of my tether!

    ive got an access db. Its got a list of words that is to be a menu system
    stored in it.

    This menu system gets pulled through onto a page and a repeat region is put
    onto it so the full set of records is displayed.

    So now ive set the scene...how do i make these words (menu) into links that go
    to a detail page that pulls through only the records relevant to the clicked
    word? make sense? no...probably not...

    here is my page [url]http://www.artdemo.co.uk/anniemos/content/jew_ears.asp[/url]

    on the left there are a normal html links. when the white links are clicked it
    goes into the db and finds only the records to do with "ears" and diplays them
    all...then another db displays the sub menu system - which is the one im
    finding problems with...where/ how do i get the sub menu linked and to the
    detail page and how does the detail page know that it is to display only the
    records for "ear4"???!

    argh!!!! HELP!

    Moragreid Guest

  2. Similar Questions and Discussions

    1. Help with Dynamic Menu
      Hey everyone, I'm developing a piece right now and have come to a stand still. The menu part of the project will contain a number of "Business...
    2. dynamic menu...again
      Hey, it's me again, and it did work, but now I'm having trouble, yet again, as my SN states, I'm still a rookie at this, and learning this as I go,...
    3. Build a dynamic menu for asp.net page
      Hi. I will do a dynamic menu for a asp.net app.. I don't know yet if how I will get the data for populate this menu: from a sql server database,...
    4. Dynamic Menu...is it possible?
      I'm new with Flash and I need to know if it is possible with Flash to get a menu created dynamically where the information is coming from a database....
    5. Dynamic Menu Help
      Hello, I have a written a simple dynamic menu seen here (http://www.digitaris.com). It uses an xml file to create the categories and...
  3. #2

    Default Re: dynamic menu system going to dynamic page

    Create your menu so that it passes the name being searched as part of the
    querystring, and then you can use this as a filter on the subsequent page.

    For example your link would look like this

    [url]http://www.artdemo.co.uk/anniemos/content/jew_ears.asp?submenu=ears[/url]

    Then on the page it goes to simply filter the submenu recordset by a URL
    parameter called "submenu"

    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "Moragreid" <webforumsuser@macromedia.com> wrote in message
    news:d2k38j$d46$1@forums.macromedia.com...
    > please can someone help me - im at the end of my tether!
    >
    > ive got an access db. Its got a list of words that is to be a menu system
    > stored in it.
    >
    > This menu system gets pulled through onto a page and a repeat region is
    put
    > onto it so the full set of records is displayed.
    >
    > So now ive set the scene...how do i make these words (menu) into links
    that go
    > to a detail page that pulls through only the records relevant to the
    clicked
    > word? make sense? no...probably not...
    >
    > here is my page [url]http://www.artdemo.co.uk/anniemos/content/jew_ears.asp[/url]
    >
    > on the left there are a normal html links. when the white links are
    clicked it
    > goes into the db and finds only the records to do with "ears" and diplays
    them
    > all...then another db displays the sub menu system - which is the one im
    > finding problems with...where/ how do i get the sub menu linked and to the
    > detail page and how does the detail page know that it is to display only
    the
    > records for "ear4"???!
    >
    > argh!!!! HELP!
    >

    Paul Whitham TMM Guest

  4. #3

    Default Re: dynamic menu system going to dynamic page

    This is very close to my question at
    [url]http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=263&thre[/url]
    adid=984023&enterthread=y
    but does not answer the second part of the question about the detail page.

    How does the record get passed? I can do the menu section with the links but I
    allways get the first record inserted.

    The Wackonerd Guest

  5. #4

    Default Re: dynamic menu system going to dynamic page

    Fab - ok - so ive got the menu passing url parameters - but the detail page is
    pulling though all records instead of just the specified one i clicked...

    i put a move to specific record on the detail page but it seems to be ignoring
    it. So this is the URL im passing...
    [url]http://localhost/anniemos/content/furniture_d_b.asp?RHMtitle=spoons[/url]
    and i want only records with rhm_code to be equal to "spoons" to be pulled
    though - any ideas?

    Moragreid Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139