<%@ Page Language="C#" AutoEventWireup="true" %>

<%@ Register TagPrefix="mod" TagName="image" Src="~/Mod/Mod_Image.ascx" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
	<link href="/css/mod.css" rel="stylesheet" />
    <script src='/js/jquery-1.7.2.min.js' type='text/javascript'></script>
    <script src='/js/lightbox.js' type='text/javascript'></script>
    <link href='/css/lightbox.css' rel='stylesheet' />
    <link href='/css/screen.css' rel='stylesheet' />
</head>
<body>
    <form id="form1" runat="server">
        <h3>Bilder in einer Tablle zusammenfassen</h3>
        <asp:Table ID="Table1" runat="server" BorderWidth="1">
            <asp:TableRow>
                <asp:TableCell>
                Standard
                </asp:TableCell>
                <asp:TableCell>
                LightView
                </asp:TableCell>
            </asp:TableRow>
            <asp:TableRow>
                <asp:TableCell>
                    <mod:image ID="Image1" runat="server" 
                        BackColor="green" 
                        BorderStyle="dotted" 
                        BorderWidth="5"
                        PathToImage="/testfolder/" 
                        Title="Testbild standard"
                        Image="aupark.jpg">
                    </mod:image>
                </asp:TableCell>
                <asp:TableCell>
                    <mod:image ID="Image2" runat="server"
                        PathToImage="/testfolder/" 
                        UseLightBox="1" 
                        Title="Testbild lightview"
                        Image="aupark.jpg">
                    </mod:image>
                </asp:TableCell>
            </asp:TableRow>
            <asp:TableRow>
                <asp:TableCell>
                    <mod:image ID="Image3" runat="server"
                        PathToImage="/testfolder/" 
                        Title="Testbild standard" 
                        Thumb="120" 
                        Preview="400"
                        Image="einstein.jpg">
                    </mod:image>
                </asp:TableCell>
                <asp:TableCell>
                    <mod:image ID="Image4" runat="server"
                        PathToImage="/testfolder/" 
                        UseLightBox="1" 
                        Title="Testbild lightview"
                        Image="einstein.jpg">
                    </mod:image>
                </asp:TableCell>
            </asp:TableRow>
        </asp:Table>
    </form>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
</body>
</html>