Fixed help files.
This commit is contained in:
commit
b8f912cc79
1543 changed files with 395123 additions and 0 deletions
34
WebApplication/AttachmentViewer.ascx
Normal file
34
WebApplication/AttachmentViewer.ascx
Normal file
|
@ -0,0 +1,34 @@
|
|||
<%@ Control Language="C#" AutoEventWireup="true" Inherits="ScrewTurn.Wiki.AttachmentViewer" Codebehind="AttachmentViewer.ascx.cs" %>
|
||||
|
||||
<anthem:Repeater ID="rptItems" runat="server" AutoUpdateAfterCallBack="True"
|
||||
OnDataBinding="rptItems_DataBinding" UpdateAfterCallBack="True">
|
||||
<HeaderTemplate>
|
||||
<table id="AttachmentViewerTable" class="generic" cellpadding="0" cellspacing="0">
|
||||
<thead>
|
||||
<tr class="tableheader">
|
||||
<th> </th>
|
||||
<th><asp:Literal ID="lblName" runat="server" Text="Name" EnableViewState="False" meta:resourcekey="lblNameResource1" /></th>
|
||||
<th><asp:Literal ID="lblSize" runat="server" Text="Size" EnableViewState="False" meta:resourcekey="lblSizeResource1" /></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
</HeaderTemplate>
|
||||
<ItemTemplate>
|
||||
<tr class="tablerow">
|
||||
<td><img src="Images/File.png" alt="-" /></td>
|
||||
<td><a href='<%# Eval("Link") %>' title="<%# ScrewTurn.Wiki.Properties.Messages.Download %>"><%# Eval("Name") %></a></td>
|
||||
<td><%# Eval("Size") %></td>
|
||||
</tr>
|
||||
</ItemTemplate>
|
||||
<AlternatingItemTemplate>
|
||||
<tr class="tablerowalternate">
|
||||
<td><img src="Images/File.png" alt="-" /></td>
|
||||
<td><a href='<%# Eval("Link") %>' title="<%# ScrewTurn.Wiki.Properties.Messages.Download %>"><%# Eval("Name") %></a></td>
|
||||
<td><%# Eval("Size") %></td>
|
||||
</tr>
|
||||
</AlternatingItemTemplate>
|
||||
<FooterTemplate>
|
||||
</tbody>
|
||||
</table>
|
||||
</FooterTemplate>
|
||||
</anthem:Repeater>
|
Loading…
Add table
Add a link
Reference in a new issue