Click here to Skip to main content
Click here to Skip to main content

Photo album browsing control

By , 1 Dec 2004
 

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:.
    <script type="text/javascript" src="PhotoBrowserRes/overlib/overlib.js">
    <!-- overLIB (c) Erik Bosrup --></script>
  4. Add the following line just after the <body> tag.
    <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.

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

About the Author

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

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 2memberMd. Touhidul Alam Shuvo29 Jun '11 - 17:19 
GeneralNice Articlemembertempsh10 Mar '11 - 6:54 
GeneralLong time user... applying a thin film of silvermemberdigger695 Nov '09 - 14:07 
Questionwhy i get two error when run this project??memberCampbell071918 May '09 - 6:36 
GeneralPerformance Solution - Use the 'modified' file attribute to the thumbnail image file name.memberwashdi19 Jul '08 - 6:43 
GeneralPhoto Albummemberyaip2 Oct '07 - 13:45 
GeneralHELPmemberKKK7111 Jun '07 - 4:44 
GeneralProblems in IEmembermelonhed33 Feb '07 - 14:19 
QuestionAdding referencesmemberbschune9 Jan '07 - 5:42 
GeneralCould not use ''; file already in use. Error [modified]membermetalguy907 Dec '06 - 3:56 
GeneralRe: Could not use ''; file already in use. Errormembern_1_c_k7 Dec '06 - 4:01 
GeneralRe: Could not use ''; file already in use. Error [modified]membermetalguy907 Dec '06 - 4:55 
GeneralRe: Could not use ''; file already in use. Errormembermetalguy907 Dec '06 - 7:25 
QuestionNo Display on my ScreenmemberMichram3 Oct '06 - 5:17 
GeneralDatabase permission Problemmemberejazan2 May '06 - 7:17 
GeneralPhotobrowser doesn't startmemberfrans.douven24 Mar '06 - 2:25 
GeneralRe: Photobrowser doesn't startmembern_1_c_k24 Mar '06 - 2:32 
GeneralRe: Photobrowser doesn't startmemberfrans.douven24 Mar '06 - 3:21 
AnswerRe: Problem in the castingmembern_1_c_k22 Mar '06 - 7:58 
QuestionHow to use this in ASP.NET 2.0memberyaip23 Jan '06 - 10:12 
AnswerRe: How to use this in ASP.NET 2.0memberepf197525 Jan '06 - 7:26 
AnswerRe: How to use this in ASP.NET 2.0membern_1_c_k30 Jan '06 - 9:13 
GeneralRe: How to use this in ASP.NET 2.0memberepf19752 Feb '06 - 16:33 
GeneralRe: How to use this in ASP.NET 2.0membern_1_c_k23 Feb '06 - 9:33 
Sorry I don't have it in a fit state at the moment. I will try to in the futute but no promises.
 
Nick
GeneralVery Good.memberBrian.Xue3 Jan '06 - 15:00 
Question.net 2.0 / Visual Studio 2005 : Operation must use an updateable querymemberblaenzo3 Jan '06 - 12:24 
AnswerRe: .net 2.0 / Visual Studio 2005 : Operation must use an updateable querymemberblaenzo3 Jan '06 - 12:29 
GeneralRe: .net 2.0 / Visual Studio 2005 : Operation must use an updateable querymembern_1_c_k4 Jan '06 - 1:34 
GeneralRe: .net 2.0 / Visual Studio 2005 : Operation must use an updateable querymemberyaip23 Jan '06 - 10:20 
GeneralRe: .net 2.0 / Visual Studio 2005 : Operation must use an updateable querymemberyaip23 Jan '06 - 10:48 
GeneralSweet devicememberHellstenius23 Dec '05 - 2:57 
GeneralNew to ASP.netmemberckvaaj15 Dec '05 - 19:02 
GeneralRe: New to ASP.netmembern_1_c_k4 Jan '06 - 1:37 
Generalso good!memberewebapp12 Dec '05 - 15:54 
GeneralAwesome app :)memberWishingStar25 Aug '05 - 18:39 
GeneralMultiple Instances of Controlsussmetalguy9020 Aug '05 - 2:24 
GeneralRe: Multiple Instances of ControlsussAnonymous20 Aug '05 - 6:55 
GeneralRe: Multiple Instances of Controlsussmetalguy9020 Aug '05 - 9:25 
Generaloverlibsussmetalguy9019 Aug '05 - 5:27 
GeneralRe: overlibmembern_1_c_k19 Aug '05 - 5:41 
GeneralRe: overlibsussmetalguy9019 Aug '05 - 5:54 
GeneralRe: overlibmembern_1_c_k19 Aug '05 - 6:06 
GeneralRe: overlibsussmetalguy9019 Aug '05 - 6:29 
GeneralRe: overlibmembern_1_c_k19 Aug '05 - 6:30 
GeneralRe: overlibsussmetalguy9019 Aug '05 - 6:49 
GeneralRe: overlibmembern_1_c_k21 Aug '05 - 1:42 
GeneralRe: overlibsussmetalguy9023 Aug '05 - 5:32 
GeneralWorks like a charmmemberarbel kfir1 Aug '05 - 21:05 
GeneralSample Directoriesmemberswandown31 May '05 - 4:34 
GeneralRe: Sample Directoriesmembern_1_c_k21 Aug '05 - 1:43 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 2 Dec 2004
Article Copyright 2004 by n_1_c_k
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid