Lightbox
Add lightbox functionality to a web page by using an ASP.Net Server control that encapsulates the Lightbox scripts and HTML syntax.
Follow This Link for a Live Demo
<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/samples/sample.master" CodeBehind="lightbox.aspx.vb" Inherits="www.aviationwebdesign.co.uk.lightbox" %>
<%@ Register Assembly="AWDServerControls" Namespace="AWDServerControls" TagPrefix="awdControls" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<awdControls:lightboxIMG ID="LightBoxIMG1" runat="server" ImageURL="/images/R22%20HPALPHA%20MAP%20Chart.jpg" BigWidth="672" BigHeight="314" SmallWidth="336" SmallHeight="157" />
</asp:Content>
Public Partial Class lightbox
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