Modification to the All photo album pages
I want to make a modification to the all photo albums page (/photoalbums/default.aspx). What i want to do is to be able to be able to click on the image displayed on the page, and have it display the image full size in another window for viewing. This way the user could see the image full size .I've tried using an image button and a hyperlink, but have yet to make any progress. any help would be greatly appreciated
Below is the code within the listview which only displays the image scaled down
<ItemTemplate>
<li>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# Eval("ImageUrl") %>' ToolTip='<%# Eval("ToolTip") %>' />
<asp:Label ID="DescriptionLabel" runat="server" Text='<%# Eval("Description") %>' />
</li>
</ItemTemplate>
|