Help with dynamic page

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Help with dynamic page

    I am trying to make a set of pages that when clicked on a link it will access
    information on a database then show it on the page. My problem is when I click
    on the link it will only show the first set of information. even if the address
    is different from the information shown!

    WinfieldFFA Guest

  2. Similar Questions and Discussions

    1. HELP DYNAMIC Page
      I have set up a dynamic page that will get information off of a database. ok my problem is when I go to the url...
    2. Dynamic XML page styled with XSL page
      I cannot make the XSL file create dynamic links properly. I wanted to link a dynamic field to another dynamic field. I can make this much happen,...
    3. 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....
    4. Linking to a Page URL from a dynamic page
      Hello I have an Access db table which contains a field called URL. I have previously <cfset display_url = #rsListHistory.URL#>. When I display...
    5. Dynamic page generation page examples?
      Hoping to add a "generate your own web service" feature to my application. I have been searching MSDN and other places for an example of .NET code...
  3. #2

    Default Re: Help with dynamic page

    You must pass the a dynamic url referencing the table. Then identify your
    detail page and place a recordset with a GET command.

    Your URL Should look like:

    [url]http://www.yourpage.com/detail.php?id=25[/url]
    Site URL / name of the page you want the info to show on / ? / id (table
    name) / = /record you want to reference.

    Then on the detail page ( the page you want this info to show on) should have
    a recordset for the table your content is in.
    set your filter for

    Filter
    column name = name of your column / = equals
    URL parameter / name of your column








    EllanaB Guest

  4. #3

    Default Re: Help with dynamic page

    Well I have all that done but it always go to the default value even if it says a different number in the URL
    WinfieldFFA 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