📄 filemanage.ascx
字号:
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="fileManage.ascx.vb" Inherits="fileManage" %>
<table style=" font-size: 12px; border-right: black 1px solid; border-top: black 1px solid; border-left: black 1px solid; border-bottom: black 1px solid;">
<tr>
<td style="width: 101px">
文件夹</td>
<td>
<asp:label id="lblftitle" runat="server" Text="文件" Width="40" ></asp:label> </td>
</tr>
<tr>
<td style="width: 101px; vertical-align:top ; border-right: black 1px solid; border-top: black 1px solid; border-left: black 1px solid; border-bottom: black 1px solid;" align="left">
<asp:TreeView ID="trvPath" runat="server" NodeIndent="15" PathSeparator="\" CollapseImageUrl="~/filemanageimg/min.gif" ExpandImageUrl="~/filemanageimg/max.gif">
<ParentNodeStyle Font-Bold="False" />
<HoverNodeStyle Font-Underline="True" ForeColor="#6666AA" />
<SelectedNodeStyle BackColor="#B5B5B5" Font-Underline="False" HorizontalPadding="0px"
VerticalPadding="0px" ImageUrl="~/filemanageimg/folderopen.gif" />
<NodeStyle Font-Names="Tahoma" Font-Size="8pt" ForeColor="Black" HorizontalPadding="2px"
NodeSpacing="0px" VerticalPadding="2px" ImageUrl="~/filemanageimg/folder.gif" />
</asp:TreeView>
</td>
<td align="left" valign="top" style="border-right: black 1px solid; border-top: black 1px solid; border-left: black 1px solid; border-bottom: black 1px solid">
<asp:DataList ID="dltFiles" runat="server" RepeatColumns="4">
<ItemTemplate>
<table style="width: 100px; height: 60px;font-size:12px" >
<tr>
<td rowspan="3" style="width: 40px" valign="top" >
<asp:LinkButton ID="linksel" runat="server" CommandName="S" CommandArgument="" >
<asp:Image ID="fileimg" runat="server" Width="30" Height="30" BorderWidth="0" />
</asp:LinkButton>
</td>
<td style="width: 60px">
<asp:Label ID="lblfilename" runat="server" Text="" ></asp:Label>
</td>
</tr>
<tr>
<td style="width: 60px">
<asp:Label ID="lblcreatedate" runat="server" ForeColor="#404040"></asp:Label>
</td>
</tr>
<tr>
<td style="width: 60px;">
<asp:Label ID="lblfilesize" runat="server" ForeColor="#404040"></asp:Label>
</td>
</tr>
</table>
</ItemTemplate>
</asp:DataList></td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -