Adding Navigation to the Details Page

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

  1. #1

    Default Adding Navigation to the Details Page

    Hi,

    Could someone help, i am wanting to add navigation to my details page to
    prevent the user from having to move backwards and forwards between the details
    page and the search results page.

    Any help would be much appreciated:confused;

    Sweetness Guest

  2. Similar Questions and Discussions

    1. Adding Border to Spry Navigation
      Used Spry to create a Vertical Menu widget. Been following the Spry Framework help pages and can adjust background color, font and other existing...
    2. Adding code that executes between form navigation
      Hi, I am trying to see if it was possible to execute code triggered off by navigating between fields in a form. For example, I might want to...
    3. master details page
      Mr. OMAR I need your help in this part, its very important for me.
    4. User details in authenticated page
      Hi, I implement forms authentication, and once authenticated, I want to display user name in a control. I created a user control, placed on...
    5. Navigation Button details
      How do i getURL action on a button to go from page 1 to page 2 using relative links in the following directory structure folder1/page1...
  3. #2

    Default Re: Adding Navigation to the Details Page

    Hi Sweetness :-)

    What exactly is it you want to achieve?
    If you are wanting the same navigation links on the details page as you have
    on the rest of your site then you could put your navigation code into an
    include file and then add that into each page of your site where you want
    the navigation links to be. e.g.
    <!--#include file="nav.asp"-->
    If you are wanting to know how to create a link then I would suggest that
    you go through the Dreamweaver tutorials under "Help>Getting Started and
    Tutorials".
    If you can give us some more info, i.e server tecnology or ho you want your
    site to work etc then we can probably help you better.

    Regards
    Bren


    "Sweetness" <webforumsuser@macromedia.com> wrote in message
    news:d6nipr$5h0$1@forums.macromedia.com...
    > Hi,
    >
    > Could someone help, i am wanting to add navigation to my details page to
    > prevent the user from having to move backwards and forwards between the
    > details
    > page and the search results page.
    >
    > Any help would be much appreciated:confused;
    >

    Bren Guest

  4. #3

    Default Re: Adding Navigation to the Details Page

    Hi Bren,

    I have a search page where the user can search the database, matching results
    will be displayed on the results page and there could be up to 50 matching
    results, the user can then click on any one of the results and view more
    information on the details page.

    What i would now like to do is add some navigation to the details page
    allowing the user to view details of the original 50 results, one after the
    other without having to keep returning to the results page.

    Hope that makes sense,

    Many Thanks

    Jo

    Sweetness Guest

  5. #4

    Default Re: Adding Navigation to the Details Page

    Hi Jo

    Use the recordset paging server behavior.

    On your details page create a recordset that retrives all the relevant
    records that you displayed on your results page instead of the one record
    that was chosen, then initiallay just display the record that your user
    chose on the results page. Add the recordset paging server behavior onto
    your results page and voila you can then page between records on your
    details page.

    Hope this helps.

    Regards
    Bren

    /*************************************
    Why do I climb mountains? Because they are there.
    [url]www.3peakschallenge.co.uk[/url]
    *************************************/


    Bren Guest

  6. #5

    Default Re: Adding Navigation to the Details Page

    on your detail page,
    dont set it to filter,
    let it collect all records,
    pass the url parameter, (from the master page)
    so it always chooses the right record
    and add your navigation buttons

    you now have back/forward buttons

    UltraDav Guest

  7. #6

    Default Re: Adding Navigation to the Details Page

    Cheers Bren,

    Sweetness 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