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

  1. #1

    Default Displaying Records

    Hello All,

    Finally was able to connect my access database to DW, now I'm trying to
    display the record set in DW. After adding the table?s column to my web page, I
    tried previewing it in Internet explore with no success. A "File Download"
    dialogue box pops up asking me if I want to "Save this file to disk" or if I
    want to "Open this file from its current location"...Can someone tell me what
    I'm doing wrong I want to be able to run the web page without the that dialogue
    box. Thanks in advance.


    Mike1500 Guest

  2. Similar Questions and Discussions

    1. displaying dup records
      I need to create a list of records that are within the same file that are duplicate records. I wanted to display any records that match another...
    2. displaying the last 5 records
      Hi, I want to display the last 5 or 10 records, for example a table with 50 records but i just want to get and display the last 5 records of the...
    3. Displaying Records Horizontally
      I understand how to use the 'repeat region' server behavior to display records horizontally as opposed to vertically, however i'm not sure how to...
    4. help with displaying records - please
      My SQL Statement under my recordset is: SELECT mmatter, (feest+costst)-(arwofft+oafeest+paymentt) as balance FROM dbo.ken_juantable WHERE...
    5. Displaying of new records
      How do you display a NEW record upon entry into a form? It always shows me the LAST record. I want the default to be a NEW record. Thanks!
  3. #2

    Default Re: Displaying Records

    not sure if this is relevant to you exactly but this is how i do it .. create
    DNS to connect DW to database (assume you have this) you will know if the
    database is listed on the connections tab. from the server behaviour tab,
    click on the 'plus' sign. Then choose the 1st option which is something like
    'create record set'. A pop up will appear which you can fill in with all the
    details, then just drag the bindings you want fron the bindings tab to the
    stage. hope that helps

    baz0hara Guest

  4. #3

    Default Re: Displaying Records

    are you working with a remote or local server?

    Mike1500 wrote:
    > Hello All,
    >
    > Finally was able to connect my access database to DW, now I'm trying to
    > display the record set in DW. After adding the table?s column to my web page, I
    > tried previewing it in Internet explore with no success. A "File Download"
    > dialogue box pops up asking me if I want to "Save this file to disk" or if I
    > want to "Open this file from its current location"...Can someone tell me what
    > I'm doing wrong I want to be able to run the web page without the that dialogue
    > box. Thanks in advance.
    >
    >
    Manuel Socarras Guest

  5. #4

    Default Re: Displaying Records

    It sounds as though you do not have the internet services installed, if it is
    ASP.

    If you are not running IIS or PWS for ASP then the browser will not know how
    to deal with your ASP page, and give you the Save as option.

    I assume you are running this locally..?

    If you are trying this on your live site it is possible ASP is not available.


    Originally posted by: Mike1500
    Hello All,

    Finally was able to connect my access database to DW, now I'm trying to
    display the record set in DW. After adding the table?s column to my web page, I
    tried previewing it in Internet explore with no success. A "File Download"
    dialogue box pops up asking me if I want to "Save this file to disk" or if I
    want to "Open this file from its current location"...Can someone tell me what
    I'm doing wrong I want to be able to run the web page without the that dialogue
    box. Thanks in advance.




    CarlGrint Guest

  6. #5

    Default Displaying records

    Hi

    Can anyone please tell me how I can manually specify the order in which
    records display? Basically I have a page which displays records from a SQL
    server database using ASP. Against each record i have 2 images (one up arrow
    and 1 down arrow). I need to create a function which detects the record before
    the current one (or after the current 1 if the current record should move down
    the list) and then swaps the 2 values for the sort order. The sort order is not
    the record ID but another column in the database.

    Also can anyone tell me when I am adding a new record into the database, how
    can I detect the previous record so that I can pull out the last sort order
    number and increment this by 1 automatically?

    Many thanks for any help.

    happycrack Guest

  7. #6

    Default Re: Displaying records

    you can recover the records in the order you want:

    SELECT fields FROM your_table ORDER BY order_field

    then you can move back/forward with MovePrevious/MoveNext methods

    HTH,

    manuel

    happycrack wrote:
    > Hi
    >
    > Can anyone please tell me how I can manually specify the order in which
    > records display? Basically I have a page which displays records from a SQL
    > server database using ASP. Against each record i have 2 images (one up arrow
    > and 1 down arrow). I need to create a function which detects the record before
    > the current one (or after the current 1 if the current record should move down
    > the list) and then swaps the 2 values for the sort order. The sort order is not
    > the record ID but another column in the database.
    >
    > Also can anyone tell me when I am adding a new record into the database, how
    > can I detect the previous record so that I can pull out the last sort order
    > number and increment this by 1 automatically?
    >
    > Many thanks for any help.
    >
    Manuel Socarras 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