Master Detail Page Problem

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

  1. #1

    Default Master Detail Page Problem

    Hi,

    could anyone please help with a problem I've encountered.

    I have set up a master detail page using Dreamweaver's 'Insert Master Detail
    Page Set' dialog box. The master page contains records displaying 2 fields : 1)
    a unique number and 2) a title. The relevant detail page is supposed to display
    when you click on the unique number (every record definitely has a unique
    record number, as this is automatically generated by the database when the
    record is created) in the master page.

    The master page displays fine, but when I click on the ID/Unique number of a
    record the detail page does not display. I simply get the following error:

    Page Cannot be Displayed
    HTTP 500 - Internal server error
    Internet Explorer

    I would really appreciate any help on this.

    Thanks,

    Sarb.

    singh83 Guest

  2. Similar Questions and Discussions

    1. Bug: (Annoying) Master-Detail Page throwing blanks randomly
      We are facing a very unique and rather annoying bug in our Flex project. The bug happens only on our Test servers and ran w/o issues on developer...
    2. Bug: Master-Detail Page throwing blanks randomly
      We are facing a very unique and rather annoying bug in our Flex project. The bug happens only on our Test servers and ran w/o issues on developer...
    3. Two cfgrids acting as master/detail page
      I want to create a master/detail sheet using two cfgrids in the same form, one on top of the other. How do I bind the display of the second grid...
    4. master/detail page problem
      Hi Everyone I am having some problems with a master detail page i have set up to catalogue brochures from my site. On my master page...
    5. master/detail page links
      Help please, I've created a master/detail page no problem but on the master page I only want the link to the detail page to be active if there is...
  3. #2

    Default Re: Master Detail Page Problem

    After applying the go to detail page from the results page did you go to the
    detail page and apply the move to specific record on it?
    Dave
    "singh83" <webforumsuser@macromedia.com> wrote in message
    news:d27ffo$afh$1@forums.macromedia.com...
    > Hi,
    >
    > could anyone please help with a problem I've encountered.
    >
    > I have set up a master detail page using Dreamweaver's 'Insert Master
    Detail
    > Page Set' dialog box. The master page contains records displaying 2 fields
    : 1)
    > a unique number and 2) a title. The relevant detail page is supposed to
    display
    > when you click on the unique number (every record definitely has a unique
    > record number, as this is automatically generated by the database when the
    > record is created) in the master page.
    >
    > The master page displays fine, but when I click on the ID/Unique number
    of a
    > record the detail page does not display. I simply get the following error:
    >
    > Page Cannot be Displayed
    > HTTP 500 - Internal server error
    > Internet Explorer
    >
    > I would really appreciate any help on this.
    >
    > Thanks,
    >
    > Sarb.
    >

    Baxter Guest

  4. #3

    Default Re: Master Detail Page Problem

    Hi,
    thanks for the reply.
    i used dreamweaver's built in mechanism, which writes all the code and server
    scripts for me. I exactly followed the tutorial in dreamweaver's help on
    building a master/detail page. I did the tutorial successfully, just don't know
    what the problem is with this.

    However, I have just realised that in my recordset in the detail page there is
    an error. The query in detail page is (all automated by dreamweaver using
    recordset dialog box):
    SELECT*
    FROM [Bug Report]
    WHERE Bug ID = MMColParam

    and the variables are:
    Name Default Value Run-Time
    Value
    MMColParam 1
    Request.QueryString("Bug ID")

    I think the problem may be that I do not have a record in my database with an
    ID value of 1 and this is the default value. If I try to change this to a value
    that does exist e.g. 6, I get the error:

    [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in
    query expression 'Bug ID = 6'.

    Does this help?

    Thanks,
    Sarb.

    singh83 Guest

  5. #4

    Default Re: Master Detail Page Problem

    sorry, the variables in the previous message do not appear clearly. It should say:
    Name: MMColParam
    Default Value: 1
    Run-Time Value: Request.QueryString("Bug ID")

    Sarb.
    singh83 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