marie
-
10/16/2006 5:57:56 PM
Image Gallery
Hello,
I need to be able to display the ImageGalleryDescription along with all of the thumbnails on the 'imagegallerythumbnails.ascx' page. When they click on the image gallery link, I want them to see the description and then below that see the thumbnails. I can do it by passing the 'GalleryID' in the URL but that is causing problems with the search.
Is there a better way to do it?
Looking at the 'imagegallerythumbnails.ascx.cs' page I see that the 'GalleryColumns' (alogn with other fields) are being grabbed:
public int ThumbnailsColumns { get { return ImageGalleryThumbnailsList.RepeatColumns; } set { ImageGalleryThumbnailsList.RepeatColumns = value; } }
So could I do something like this to grab the 'GalleryDescription' as well?
Thanks for you help.
|