photogallery_filmstrip.ascx

来自「一个ASP.NET下的中文内容管理和社区系统」· ASCX 代码 · 共 20 行

ASCX
20
字号
<%@ Register TagPrefix="community" Namespace="ASPNET.StarterKit.Communities" Assembly="ASPNET.StarterKit.Communities" %>
<%@ Control %>
<%--
This skin is used by the PhotoGallery module to display photos in a Filmstrip

PAGE PARTS 
You can add the following controls to this page:
==========
imgThumbnail    - A community DisplayImage control for displaying photo thumbnails
lblTitle        - A Label control for displaying the photo title
lnkViewDetails  - A HyperLink control for linking to the full photo details
--%>
<ItemTemplate>
	<community:ItemPhotoImage ID="imgThumbnail" Runat="server" Width="100" />
	<br clear="all">
	<asp:Label id="lblTitle" CssClass="PhotoSection_ListTitle" Runat="Server" />
	<br>
	<community:ItemPhotoViewDetails Text="查看细节" CssClass="PhotoSection_ListReadMoreLink" Runat="server" id="ItemPhotoViewDetails1" />
</ItemTemplate>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?