创建文件夹结构

时间:2013-04-02 12:30:31

标签: asp.net

我需要动态地在应用程序中开发以下文件夹结构。我使用jQuery开发它。在asp.net中有任何替代方法来开发这个结构。

实际上我正在创建一个ul li结构,我正在向ul itenm添加文件夹图标,并将文件图标添加到m项代码后面的li项目。如果创建了ul结构,我正在使用jquery插件将此ul结构显示为浏览器中的文件夹和文件。我只想显示结构..

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以在asp.net中使用Treeview - 树视图支持将图像绑定到节点。

<asp:TreeView id="SampleTreeView" 
  runat="server">
    <RootNodeStyle ImageUrl="~/Images/root.gif" />
    <ParentNodeStyle ImageUrl="~/Images/parent.gif" />
    <LeafNodeStyle ImageUrl="~/Images/leaf.gif" />
  <Nodes>
    <asp:TreeNode Value="Home" 
      Text="Home"
      Target="Content" 
      Expanded="True">
      <asp:TreeNode Value="Page 1" 
        Text="Page1"
        Target="Content">
        <asp:TreeNode Value="Section 1" 
          Text="Section 1"
          Target="Content"/>
      </asp:TreeNode>              
      <asp:TreeNode Value="Page 2" 
        Text="Page 2"
        Target="Content"
          ImageUrl="~/Images/star.gif">
      </asp:TreeNode> 
    </asp:TreeNode>
  </Nodes>
</asp:TreeView>

如果要动态构建树视图 - 此资源也可能有所帮助。 http://www.java2s.com/Code/ASP/Asp-Control/AddingnodesprogrammaticallytotheTreeViewcontrolC.htm