Recordset Problem with Access

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

  1. #1

    Default Recordset Problem with Access

    I have created a log in page, which works and the information is routed to an
    Access database; I have also created a confirm page which is supposed to tell
    user the following:

    ========================================
    Thank you (first name) (last name) for registering.

    Your access details are as follows

    Username: (username)
    Password: as you entered

    Click to login
    =========================================

    The problem is that everytime I try to register, the confirm page always shows
    the first name, last name, and username of the first entry in the database, and
    not the current person who registered.

    Here is what I put on the confirm page in Dreamweaver, after creating a
    Recordset.

    ====================================
    Thank you {rsConfirm.myFirstName} {rsConfirm.myLastName} for registering.

    Your access details are as follows

    Username: {rsConfirm.myUsername}
    Password: as you entered
    =====================================

    Thanks

    nordine5 Guest

  2. Similar Questions and Discussions

    1. PHP Recordset Paging problem
      I am trying to set up record paging using the simple <<Previous Next>> setup. However, when I click the Next>> link, it doesn't show the rest of the...
    2. Recordset problem
      Hi, here is my situation, in an access database i have a field which has 4 possible values (they are 'none', '1-2', '3-4', '5ormore') i want to...
    3. Getting 0 recordset in MS Access Query
      Hi, I'm trying to do a sql query on a date column, like this SELECT * FROM WHERE Call_Date = #04/01/2004# No errors in the statement, but 0...
    4. Unable to save recordset into an access database
      Hi I am trying to make a page where i simply collect data from a form and update it in the database. i am useing a recodset to do the above. The...
    5. Bind Form to a disconnected RecordSet Access 2000
      Is there any way to bind an Access form to a Disconnected recordset in AC2000, or am I stuck with using temp tables? Ron W
  3. #2

    Default Re: Recordset Problem with Access

    this should be of some use. on inserting a record the proof page is filtered
    by retrieving autonumber from the insert page.

    [url]http://www.tom-muck.com/extensions/help/insertretrieve/[/url]





    "nordine5" <webforumsuser@macromedia.com> wrote in message
    news:d2qlad$i9m$1@forums.macromedia.com...
    >I have created a log in page, which works and the information is routed to
    >an
    > Access database; I have also created a confirm page which is supposed to
    > tell
    > user the following:
    >
    > ========================================
    > Thank you (first name) (last name) for registering.
    >
    > Your access details are as follows
    >
    > Username: (username)
    > Password: as you entered
    >
    > Click to login
    > =========================================
    >
    > The problem is that everytime I try to register, the confirm page always
    > shows
    > the first name, last name, and username of the first entry in the
    > database, and
    > not the current person who registered.
    >
    > Here is what I put on the confirm page in Dreamweaver, after creating a
    > Recordset.
    >
    > ====================================
    > Thank you {rsConfirm.myFirstName} {rsConfirm.myLastName} for registering.
    >
    > Your access details are as follows
    >
    > Username: {rsConfirm.myUsername}
    > Password: as you entered
    > =====================================
    >
    > Thanks
    >

    twocans 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