ASP driven photo gallery - using Access?

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

  1. #1

    Default ASP driven photo gallery - using Access?

    :confused;
    I am hoping to set up a photo gallery that will enable users to click through
    images of an event (photographed by various people) in chronological order. I
    am also wanting to provide mini galleries for each individual photographer.

    I don't want to use frames.

    I want to use ASP to do this as efficiently as possible. I was thinking I
    could put images into an Access database. However, Dreamweaver is having
    problems opening/reading my table (It says 1073741823 required next to each
    image within the table in the Database/Bindings/Server Behaviours panel). I
    don't know what this means.

    Can anyone advise a way to make images contained within an Access database
    appear in Dreamweaver?

    Any tips much appreciated.
    x Rosie

    rosiegforce Guest

  2. Similar Questions and Discussions

    1. CMS Photo Gallery
      I need to create a Photo Gallery for a client who wants access to change images in the albums. The gallery contains about 6 albums and I am not...
    2. PS web photo gallery
      I'm new to "developing" - a term I use very roughly as I have such a surface knowledge. I just want to create a family site. I have CS2 - would like...
    3. Web Photo Gallery HELP
      I am looking to designing a gallery page with Dreamweaver. I wanted to have the enlarged picture and the thumbnails on the same page so that when...
    4. Web Photo Gallery
      Hi group ! To my great surprise, I created a Web Photo Gallery in about 3 minutes ! This option is amazing ! If you want to see the result, go...
    5. PHP Photo Gallery
      After spending many hours trying to find a simple looking, fast,dynamic php photo-gallery for my digital pictures, I decided to code a my own. ...
  3. #2

    Default Re: ASP driven photo gallery - using Access?

    rosiegforce wrote:
    > :confused;
    > I am hoping to set up a photo gallery that will enable users to click through
    > images of an event (photographed by various people) in chronological order. I
    > am also wanting to provide mini galleries for each individual photographer.
    >
    > I don't want to use frames.
    >
    > I want to use ASP to do this as efficiently as possible. I was thinking I
    > could put images into an Access database. However, Dreamweaver is having
    > problems opening/reading my table (It says 1073741823 required next to each
    > image within the table in the Database/Bindings/Server Behaviours panel). I
    > don't know what this means.
    >
    > Can anyone advise a way to make images contained within an Access database
    > appear in Dreamweaver?
    >
    > Any tips much appreciated.
    > x Rosie
    >
    Rosie, did you put the actual image into the database, or the
    path/filename for the image?

    It's far better to put the path/filename into the database.

    I have a sample ASP-Access image gallery that I can send you if you
    want. Warning: it does NOT use Dreamweaver's built-in server coding
    stuff; it's all hand-coded. You need to be at least a little proficient
    in ASP/VBScript to be able to figure it out.

    Send me an email offlist: winday at wildrosewebsites dot com and I'll
    send you the files if you want.

    --
    Win Day
    Wild Rose Websites
    "You dream it. We make it work."
    -----------------------------------------------
    Building affordable websites : [url]http://www.wildrosewebsites.com[/url]
    NEW! Website Design Kits : [url]http://www.wildrosewebsites.com/services/kits.asp[/url]
    -----------------------------------------------
    Win Day Guest

  4. #3

    Default Re: ASP driven photo gallery - using Access?

    Actually, it's best (all other things, etc.) to just put the filename of the
    image in the database. Do the pathing in the HTML. That way, if you move
    an image, you don't have to find the records and change them.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "Win Day" <winday@NOSPAMwildrosewebsites.com> wrote in message
    news:d759n3$m6k$1@forums.macromedia.com...
    > rosiegforce wrote:
    >> :confused;
    >> I am hoping to set up a photo gallery that will enable users to click
    >> through images of an event (photographed by various people) in
    >> chronological order. I am also wanting to provide mini galleries for each
    >> individual photographer. I don't want to use frames. I want to use ASP to
    >> do this as efficiently as possible. I was thinking I could put images
    >> into an Access database. However, Dreamweaver is having problems
    >> opening/reading my table (It says 1073741823 required next to each image
    >> within the table in the Database/Bindings/Server Behaviours panel). I
    >> don't know what this means.
    >>
    >> Can anyone advise a way to make images contained within an Access
    >> database appear in Dreamweaver?
    >>
    >> Any tips much appreciated. x Rosie
    >>
    >
    > Rosie, did you put the actual image into the database, or the
    > path/filename for the image?
    >
    > It's far better to put the path/filename into the database.
    >
    > I have a sample ASP-Access image gallery that I can send you if you want.
    > Warning: it does NOT use Dreamweaver's built-in server coding stuff; it's
    > all hand-coded. You need to be at least a little proficient in
    > ASP/VBScript to be able to figure it out.
    >
    > Send me an email offlist: winday at wildrosewebsites dot com and I'll send
    > you the files if you want.
    >
    > --
    > Win Day
    > Wild Rose Websites
    > "You dream it. We make it work."
    > -----------------------------------------------
    > Building affordable websites : [url]http://www.wildrosewebsites.com[/url]
    > NEW! Website Design Kits :
    > [url]http://www.wildrosewebsites.com/services/kits.asp[/url]
    > -----------------------------------------------

    Murray *TMM* Guest

  5. #4

    Default Re: ASP driven photo gallery - using Access?

    Murray *TMM* wrote:
    > Actually, it's best (all other things, etc.) to just put the filename of the
    > image in the database. Do the pathing in the HTML. That way, if you move
    > an image, you don't have to find the records and change them.
    >
    You're right, Murray. My mistake!


    --
    Win Day
    Wild Rose Websites
    "You dream it. We make it work."
    -----------------------------------------------
    Building affordable websites : [url]http://www.wildrosewebsites.com[/url]
    NEW! Website Design Kits : [url]http://www.wildrosewebsites.com/services/kits.asp[/url]
    -----------------------------------------------
    Win Day Guest

  6. #5

    Default Re: ASP driven photo gallery - using Access?

    I dreamt I won the lottery last night. Can you make it work?

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "Win Day" <winday@NOSPAMwildrosewebsites.com> wrote in message
    news:d75e5e$rhv$2@forums.macromedia.com...
    > Murray *TMM* wrote:
    >> Actually, it's best (all other things, etc.) to just put the filename of
    >> the image in the database. Do the pathing in the HTML. That way, if you
    >> move an image, you don't have to find the records and change them.
    >>
    >
    > You're right, Murray. My mistake!
    >
    >
    > --
    > Win Day
    > Wild Rose Websites
    > "You dream it. We make it work."
    > -----------------------------------------------
    > Building affordable websites : [url]http://www.wildrosewebsites.com[/url]
    > NEW! Website Design Kits :
    > [url]http://www.wildrosewebsites.com/services/kits.asp[/url]
    > -----------------------------------------------

    Murray *TMM* Guest

  7. #6

    Default Re: ASP driven photo gallery - using Access?

    Murray *TMM* wrote:
    > I dreamt I won the lottery last night. Can you make it work?
    >
    Do I get half?

    --
    Win Day
    Wild Rose Websites
    "You dream it. We make it work."
    -----------------------------------------------
    Building affordable websites : [url]http://www.wildrosewebsites.com[/url]
    NEW! Website Design Kits : [url]http://www.wildrosewebsites.com/services/kits.asp[/url]
    -----------------------------------------------
    Win Day Guest

  8. #7

    Default Re: ASP driven photo gallery - using Access?

    Half of the half I was going to share.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "Win Day" <winday@NOSPAMwildrosewebsites.com> wrote in message
    news:d75fid$li$1@forums.macromedia.com...
    > Murray *TMM* wrote:
    >> I dreamt I won the lottery last night. Can you make it work?
    >>
    >
    > Do I get half?
    >
    > --
    > Win Day
    > Wild Rose Websites
    > "You dream it. We make it work."
    > -----------------------------------------------
    > Building affordable websites : [url]http://www.wildrosewebsites.com[/url]
    > NEW! Website Design Kits :
    > [url]http://www.wildrosewebsites.com/services/kits.asp[/url]
    > -----------------------------------------------

    Murray *TMM* Guest

  9. #8

    Default Re: ASP driven photo gallery - using Access?

    "rosiegforce" wrote:
    > :confused;
    > I am hoping to set up a photo gallery that will enable users to click
    through
    > images of an event (photographed by various people) in chronological
    order. I
    > am also wanting to provide mini galleries for each individual
    photographer.
    >
    > I don't want to use frames.
    >
    > I want to use ASP to do this as efficiently as possible. I was thinking I
    > could put images into an Access database. However, Dreamweaver is having
    > problems opening/reading my table (It says 1073741823 required next to
    each
    > image within the table in the Database/Bindings/Server Behaviours panel).
    I
    > don't know what this means.
    >
    > Can anyone advise a way to make images contained within an Access
    database
    > appear in Dreamweaver?
    >
    > Any tips much appreciated.
    > x Rosie

    Maybe you can use this free tutorial
    [url]http://www.ncubed.com/Products/Galleries/Free/[/url] making a photogallery in ASP.

    /Tine


    Tine Müller 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