filetree.aspx
来自「OA系统源码 办公应用软件源码 asp.net 开发」· ASPX 代码 · 共 28 行
ASPX
28 行
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FileTree.aspx.cs" Inherits="File_FileTree" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body topmargin="0px">
<form id="form1" runat="server">
<div style="width:100%; height:500px;">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
</asp:Timer>
<asp:TreeView id="tvFiles" runat="server" ShowLines="True" ExpandDepth="2" Height="151px" Width="99px" Font-Size="Small" ForeColor="Black" OnSelectedNodeChanged="tvFiles_SelectedNodeChanged">
</asp:TreeView>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?