view-postflatviewprint.ascx

来自「本系统是在asp版《在线文件管理器》的基础上设计制作」· ASCX 代码 · 共 61 行

ASCX
61
字号
<%@ Control Language="C#" %>
<%@ Import Namespace="CommunityServer" %>
<%@ Import Namespace="CommunityServer.Controls" %>
<%@ Import Namespace="CommunityServer.Components" %>
<%@ Import Namespace="CommunityServer.Discussions.Components" %>
<%@ Import Namespace="CommunityServer.Discussions.Controls" %>
<%@ Register TagPrefix="CS" Namespace="CommunityServer.Controls" Assembly="CommunityServer.Controls" %>
<%@ Register TagPrefix="CSD" Namespace="CommunityServer.Discussions.Controls" Assembly="CommunityServer.Discussions" %>

<body>    
	<div id="header">

		<h1><asp:Label ID="PostSubject" Runat="server" /></h1>
		<h3><asp:Label ID="ForumName" Runat="server" /></h3>

<asp:dropdownlist id="SortOrder" Runat="server" Visible="False" AutoPostBack="True">
	<asp:ListItem Value="0">Oldest to newest</asp:ListItem>
	<asp:ListItem Value="1">Newest to oldest</asp:ListItem>
</asp:dropdownlist>

<asp:Repeater ID="PostRepeater" Runat="server">      
	<ItemTemplate>
		<h3><asp:Literal runat="server" ID="Subject" /></h3>
		<hr>
		<asp:Literal runat="server" ID="Username" />
		<%# Formatter.FormatDatePost (((ForumPost) Container.DataItem).PostDate) %>
		<br>
		<CSD:PostView runat="server" ID="PostView"/>
	</ItemTemplate>
</asp:Repeater> 

<table cellpadding="3" cellspacing="0" width="100%">
	<tr>
		<td valign="top">

			<asp:PlaceHolder runat="server" ID="PagingArea" >

				<table align="right" class="tableBorder" cellpadding="0" cellspacing="0">
					<tr>
						<td>
							<table width="100%" cellpadding="2" cellspacing="0">
								<tr>
									<td valign="middle" class="column" nowrap>
										&nbsp;<CS:CurrentPage Cssclass="columnText" id="CurrentPage" runat="server" />
									</td>
									<td valign="middle" align="right" class="column" nowrap>
										<CS:Pager id="Pager" runat="server" />
									</td>
								</tr>
							</table>
						</td>
					</tr>
				</table>

			</asp:PlaceHolder>
	
		</td> 
	</tr>
</table>
<CS:Ads Zone="StandardBottom" runat="server" ID="Ads2"/>

⌨️ 快捷键说明

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