Click here to Skip to main content
15,867,308 members
Articles / Web Development / ASP.NET
Article

Photo album browsing control

Rate me:
Please Sign up or sign in to vote.
4.64/5 (30 votes)
1 Dec 20044 min read 341.4K   6.8K   138   115
A web control that allows photo album browsing

Image 1

Introduction

This control allows someone to include a photo album browser on their website with the minimum of fuss. It is implemented as a web control that can be sited within a parent ASP.NET page. It automatically generates a treeview of navigable albums, the album pages themselves and all the navigation elements. New albums can be uploaded by just uploading a directory containing the source images to a specific folder on the server.

To see a live running example go to http://www.codefresh.com/PhotoBrowser.aspx

Background

Previous to writing this web control I was using JAlbum to create static HTML pages for all the photos that I wanted to host on my website. Eventually the number of photos I was putting online was becoming unmanageable and I was finding it a chore to write the HMTL to link all of the albums together. I therefore decided to write an application that allowed me to simply upload the photos to the server and get ASP.NET to do the hard work of producing the pages. My first attempt worked but was a bit clunky due to me not knowing ASP.NET particularly well. What is presented here is my second version which I think is much improved. The control will render the album treeview, which is based on the file structure under a specified ‘photos’ directory. As the user navigates around the photos, the web control produces thumbnail pages for each album. This can be navigated through via the usual forward and back buttons. The user can examine photos in greater detail by clicking on each thumbnail, at which point they are also able to add comments.

Using the code

The code is comprised of three Visual Studio 2003 projects

  • The PhotoBrowser project is an ASP.NET web application that contains the control that renders the HTML.
  • The PhotoBrowserLibrary class project that encapsulates the photo directory file structure.
  • And the squishyTREE project which contains the treeview control that is used to display the album list. Note that this project is copy of the one released by squishyWARE, modified by adding a parent property to the TreeNode class.

In order to use the photo browser in your web application you'll need to perform the following steps:

  1. Import the PhotoBrowser.ascx file and the PhotoBrowserRes directory. PhotoBrowser.ascx is the web control itself and the PhotoBrowserRes directory contains the images it requires.
  2. Add a reference to the PhotoBrowserLibrary DLL and the squishyTREE DLL.
  3. Add the following line to you page, just before the closing </head> tag:.
    HTML
    <script type="text/javascript" src="PhotoBrowserRes/overlib/overlib.js">
    <!-- overLIB (c) Erik Bosrup --></script>
  4. Add the following line just after the <body> tag.
    HTML
    <div id="overDiv" style="position:absolute; visibility:hidden; 
    z-index:1000;"></div>
Then simply drag the web control on to your .aspx page, as shown below.

Image 2

Points of Interest

The treeview is implemented using the excellent squishyTREE control from http://www.squishyweb.com. The comment popups were implemented using the excellent overLib. I used some code from here to help me sort out getting the date the photo was taken from the embedded EXIF data (apologies if this is the wrong link but I can’t honestly remember where it came from).

Popups by overLIB!

Known Issues

The application currently only detects changes in the photos contained within a directory when the number stored in the database and the number on the file system differs. This is for performance reasons. At some point in the future I would like to make this cleverer so that it can detect when an image has been 'touched' (e.g. its size changes). There is also no way to use a hyperlink to externally link to a single album (although you can use a link for individual photos). Lastly, I know there are a number of issues with the attached CSS. This CSS was *obtained* from JAlbum and I haven't had a chance to strip it down to the bare minimum.

I welcome any feedback or comments.

History

  • 1.3 (2 Dec 2004)
    • Implemented the comment popups using overLib.

  • 1.2 (29 Nov 2004)
    • Removed the Tooltip JavaScript includes from the source archive due to not being aware of the licensing restrictions.

  • 1.1 (26 Nov 2004)
    • Updated to handle ampersands in photo filenames and for the source archive to include the squishyTREE control project.

  • 1.0 (24 Nov 2004)
    • Initial release

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United Kingdom United Kingdom
I'm currently working in London working on a variety of technologies.

Comments and Discussions

 
GeneralRe: Error Pin
Member 6456612-Dec-04 23:14
Member 6456612-Dec-04 23:14 
GeneralRe: Error Pin
n_1_c_k2-Dec-04 23:28
n_1_c_k2-Dec-04 23:28 
GeneralRe: Error Pin
RuiPedro4-Dec-04 4:32
RuiPedro4-Dec-04 4:32 
GeneralRe: Error Pin
n_1_c_k5-Dec-04 1:18
n_1_c_k5-Dec-04 1:18 
GeneralRe: Error Pin
RuiPedro5-Dec-04 2:19
RuiPedro5-Dec-04 2:19 
GeneralRe: Error Pin
RuiPedro4-Jan-05 12:01
RuiPedro4-Jan-05 12:01 
GeneralRe: Error Pin
n_1_c_k2-Dec-04 23:32
n_1_c_k2-Dec-04 23:32 
GeneralRe: Error Pin
Anonymous3-Dec-04 6:11
Anonymous3-Dec-04 6:11 
GeneralTerms of use violation Pin
shawna88826-Nov-04 9:20
shawna88826-Nov-04 9:20 
GeneralRe: Terms of use violation Pin
n_1_c_k28-Nov-04 0:56
n_1_c_k28-Nov-04 0:56 
GeneralRe: Terms of use violation Pin
shawna88829-Nov-04 6:22
shawna88829-Nov-04 6:22 
GeneralRe: Terms of use violation Pin
n_1_c_k1-Dec-04 1:43
n_1_c_k1-Dec-04 1:43 
GeneralRe: Terms of use violation Pin
Nish Nishant1-Dec-04 16:17
sitebuilderNish Nishant1-Dec-04 16:17 
GeneralRe: Terms of use violation Pin
n_1_c_k2-Dec-04 0:45
n_1_c_k2-Dec-04 0:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.