Insert one record over multiple pages

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

  1. #1

    Default Insert one record over multiple pages

    Hi - using ASP/Acsess/VBscript I want ot insert a record in the database, but
    this must be done over several web pages (1-2-3) because there are many form
    fields. Only one record. What is the best way to do this? Use the insert
    record behaviour for the first page and then user update record with session
    MM_username for 2 and 3 ? Thanx! Bjorn.

    btn Guest

  2. Similar Questions and Discussions

    1. Insert record
      Hi all, I'm having a bit of a problem at the moment. I'm basically trying to insert a record to a MS Access database. I'm using dreamweaver MX. What...
    2. Multiple Insert or Looping Insert
      I built an application on an Access DB that allows a dispatcher to log trucks in the field at their location as they call in. There are three...
    3. Multiple Record Insert
      Hey All!! I'm kinda new to building web applications, and I need some much needed help with a problem that I just can get around. Any assistance...
    4. How to insert a new record
      I am having problems with inserting a new record into access database using the detailsview control, the autonumber of the control does not update...
    5. insert a record
      Hi every one, I have a problem inserting a record... error 500.100 (Operation must use an updateable query) or Unknown variable or something... ...
  3. #2

    Default Re: Insert one record over multiple pages

    There are two ways to do this.

    1) You could pass the form values from page to page in hidden fields and
    then write them all at the end, or
    2) The method you described.

    IMHO 2) is a better option in ASP as at least you have some of the
    information stored should the person run into a problem.

    If you wanted to give ASP.Net a try then you could split the form over
    several panels (which appear like pages) and then do an insert at the end as
    ..net holds form values betweens calls on the server.

    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "btn" <webforumsuser@macromedia.com> wrote in message
    news:d1dj0i$saj$1@forums.macromedia.com...
    > Hi - using ASP/Acsess/VBscript I want ot insert a record in the database,
    but
    > this must be done over several web pages (1-2-3) because there are many
    form
    > fields. Only one record. What is the best way to do this? Use the
    insert
    > record behaviour for the first page and then user update record with
    session
    > MM_username for 2 and 3 ? Thanx! Bjorn.
    >

    Paul Whitham TMM 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