Welcome, Guest
  • Author Topic: Page records in Flash  (Read 888 times)

    john moore

    • Server what's that
    • *
    • Posts: 1
      • View Profile
      • Email
    Page records in Flash
    « on: 07/18/04, 18:06 »
    Hello,
    I was just going through your tutorial on loading data into flash through asp (good job, by the way, it's the first one I've come accross that works in the end - very straight forward).
    Anyway, is there a way to move through records, like you would in UltraDev? I'd like to show 10 records, and have 'next' and 'previous' buttons available. :o
    Thanks.
    « Last Edit: 07/23/04, 11:02 by Jorge Solis »

    Jorge Solis

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 14616
      • View Profile
    Re:Page records in Flash
    « Reply #1 on: 07/23/04, 11:06 »
    Hi John, welcome to the Boards !

    Dreamweaver use a SQL LIMIT statement to page the recordsets, but like an automatic behavior. You need to do the same in Flash, passing back and forth the nr of the first record you want the how many rows you need, basically to build:

    "select * from myTable LIMIT 20, 10"

    But there's no behaviour in Flash nor in dreamweaver to output values as Flash needs.

    Jorge