SquareFoot Gallery
A reusable standards compliant gallery control that CAN be linked to a full screen Flash image viewer, but can also be used standalone. Use is simplicity itself a one line ASP.Net Tag with a folder name containing the images you want to use is all that is needed to get started. The controls offers lightbox like functionality with jQuery compatability.
Follow This Link for a Live Demo
<%@ Page Title="Aviation Web Development :: Squarefoot Gallery Sample" Language="vb" AutoEventWireup="false" MasterPageFile="~/awd.master" CodeBehind="squarefootgallery.aspx.vb" Inherits="www.aviationwebdesign.co.uk.squarefootgallery1" %>
<%@ Register Src="~/web_user_controls/squarefootgallery.ascx" TagName="squarefoot" TagPrefix="awd" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<h1>Squarefoot Gallery Demo</h1>
<br />
<awd:squarefoot runat="server" id="SquareFoot1" Folder="/samples/squarefootimages"/>
</asp:Content>
Public Partial Class squarefootgallery1
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
End Class