You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
922 B

<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Viewphoto.aspx.cs" Inherits="Viewphoto" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
&nbsp;<asp:FormView ID="FormView1" runat="server" BorderStyle="None" BorderWidth="0px"
CellPadding="0" CssClass="view" DataSourceID="ObjectDataSource1"
EnableViewState="False" AllowPaging="True">
<ItemTemplate>
<p>
<%# Server.HtmlEncode(Eval("Caption").ToString()) %>
</p>
<img alt='照片编号 <%# Eval("PhotoID") %>' src="Handler.ashx?PhotoID=<%# Eval("PhotoID") %>&Size=L"
style="border: 4px solid white" /></a>
</ItemTemplate>
</asp:FormView>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetPhotos"
TypeName="PhotoManager">