Storing and Retrieving Info in Access

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Storing and Retrieving Info in Access

    I'm not sure if this is even the best place to ask this question, but
    here goes: my site is hosted by a third party on a Win2K platform and
    there is a SQL server on it. What I'd like is to be able to create a
    "Wish List" of sorts on the site, whereby the user enters info on
    products they want, and they can then retrieve that info the next time
    they visit. Can I do this in ASP and send info to an Access DB on the
    server? I'm a veteran at design but a newbie at real programming.
    Thanks for your help!

    E
    Erik T. Nomad Guest

  2. Similar Questions and Discussions

    1. Storing and retrieving image files in a database
      hi JerkyRobot I can see no one answered your question. here is the answer. a few things you will have to do before this will work. 1) you need to...
    2. Storing and retrieving arrays using Berkeley DB (Sleepycat)
      Hi all, I have experience with PHP, but I am totally newbie on Perl. I need to use Berkeley DB to store/retrieve some records. The samples I...
    3. Storing/Retrieving/Executing Php
      I want to creating an application where all my php(with html) is stored in the database. So my index.php would find the appropriate the php file...
    4. Retrieving info from database
      Thanks to a lot of excellent advice from this newsgroup I have managed to get a site working which is database driven. I would now like to know if...
    5. Storing a file with an access record
      Can someone point me in the direction of some good documentation showing how a user might store a text or image file in an access record?
  3. #2

    Default Re: Storing and Retrieving Info in Access


    "Erik T. Nomad" <erikthenomad@hotmail.com> wrote in message
    news:f4f5a604.0406090927.6fbf22cb@posting.google.c om...
    > I'm not sure if this is even the best place to ask this question, but
    > here goes: my site is hosted by a third party on a Win2K platform and
    > there is a SQL server on it. What I'd like is to be able to create a
    > "Wish List" of sorts on the site, whereby the user enters info on
    > products they want, and they can then retrieve that info the next time
    > they visit. Can I do this in ASP and send info to an Access DB on the
    > server? I'm a veteran at design but a newbie at real programming.
    > Thanks for your help!
    >
    > E
    Assuming you have some way of uniquely identifying them (e.g.
    username/password) then yes. As you have Sql Server on this web host, why
    not use that instead of an Access DB.

    As to how you do it. This is akin to asking "how to do program?" Best answer
    in my opinion is to buy a book on ASP database programming. The Wrox series
    used to be good.


    --
    John Blessing

    [url]http://www.LbeHelpdesk.com[/url] - Help Desk software priced to suit all
    businesses
    [url]http://www.room-booking-software.com[/url] - Schedule rooms & equipment bookings
    for your meeting/class over the web.
    [url]http://www.lbetoolbox.com[/url] - Remove Duplicates from MS Outlook


    John Blessing Guest

  4. #3

    Default Re: Storing and Retrieving Info in Access

    "John Blessing" <newsgroup@LbeHelpdesk.com> wrote in message news:<2ip795Fp35d0U1@uni-berlin.de>...
    > "Erik T. Nomad" <erikthenomad@hotmail.com> wrote in message
    > news:f4f5a604.0406090927.6fbf22cb@posting.google.c om...
    > > I'm not sure if this is even the best place to ask this question, but
    > > here goes: my site is hosted by a third party on a Win2K platform and
    > > there is a SQL server on it. What I'd like is to be able to create a
    > > "Wish List" of sorts on the site, whereby the user enters info on
    > > products they want, and they can then retrieve that info the next time
    > > they visit. Can I do this in ASP and send info to an Access DB on the
    > > server? I'm a veteran at design but a newbie at real programming.
    > > Thanks for your help!
    > >
    > > E
    >
    > Assuming you have some way of uniquely identifying them (e.g.
    > username/password) then yes. As you have Sql Server on this web host, why
    > not use that instead of an Access DB.
    >
    > As to how you do it. This is akin to asking "how to do program?" Best answer
    > in my opinion is to buy a book on ASP database programming. The Wrox series
    > used to be good.
    Will do; didn't know if there was some pre-existing code out there
    that might help me achieve this functionality (I've already added
    pretty good "tell a friend" and message board functions to my site in
    ASP by just modifying what's already out there), but thanks for the
    first step in the right direction.

    E
    Erik T. Nomad Guest

  5. #4

    Default Re: Storing and Retrieving Info in Access

    For a "quick and dirty" generic ASP open source solution to putting
    databases on the Web that just requires setting up a configuration page
    for each table or query and uploading the database to the Web as long as
    there is an autonumber field in each table (and you'll probably also
    separately want to create login capabilities), perhaps try something
    like this:
    GenericDB by Eli Robillard
    [url]http://www.genericdb.com[/url] and then click on the Tips link to see an
    example

    Best regards,
    J. Paul Schmidt, Freelance ASP Web Consultant
    [url]http://www.Bullschmidt.com[/url]
    ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...


    *** Sent via Devdex [url]http://www.devdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Bullschmidt 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