/usr/share/asp.net-demos/2.0/treeview/treeview.aspx is in asp.net-examples 4.2-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | <%@ Page Language="C#" %>
<%@ Register TagPrefix="mono" TagName="MonoSamplesHeader" src="~/controls/MonoSamplesHeader.ascx" %>
<html>
  <head>
    <title>TreeView</title>
    <link rel="stylesheet" type="text/css" href="/mono-xsp.css">
  </head>
  <body bgcolor="LemonChiffon">
    <mono:MonoSamplesHeader runat="server"/>
    <form runat="server">
    
      <h3>ASP.NET 2.0 TreeView Example</h3>
      
            <asp:TreeView id="LinksTreeView"
              ForeColor="Blue"
              NodeWrap="true"
              runat="server"
			  LeafNodeStyle-ForeColor="Red"
			  SelectedNodeStyle-BackColor="yellow"
			  ShowCheckBoxes="All"
			  
			  ShowLines="true"
			  ImageSet="Custom"
			  ShowExpandCollapse="true"
			  CollapseImageUrl="http://go-mono.com/status/images/se.gif"
			  
			  EnableClientScript="true"
			  NodeIndent="50"
			  >
         
              <Nodes>
        
                <asp:TreeNode Text="Table of Contents"
                  SelectAction="None">
             
                  <asp:TreeNode Text="Chapter One" SelectAction="Expand">
            
                    <asp:TreeNode Text="Section 1.0">
              
                      <asp:TreeNode Text="Topic 1.0.1"/>
                      <asp:TreeNode Text="Topic 1.0.2"/>
                      <asp:TreeNode Text="Topic 1.0.3"/>
              
                    </asp:TreeNode>
              
                    <asp:TreeNode Text="Section 1.1" ImageUrl="http://go-mono.com/status/images/se.gif" ImageToolTip="untipbo">
              
                      <asp:TreeNode Text="Topic 1.1.1"/>
                      <asp:TreeNode Text="Topic 1.1.2"/>
                      <asp:TreeNode Text="Topic 1.1.3"/>
                      <asp:TreeNode Text="Topic 1.1.4"/>
               
                    </asp:TreeNode>
            
                  </asp:TreeNode>
            
                  <asp:TreeNode Text="Chapter Two">
            
                    <asp:TreeNode Text="Section 2.0">
              
                      <asp:TreeNode Text="Topic 2.0.1"/>
                      <asp:TreeNode Text="Topic 2.0.2"/>
              
                    </asp:TreeNode>
            
                  </asp:TreeNode>
            
                </asp:TreeNode>
                <asp:TreeNode Text="Appendix A" />
                <asp:TreeNode Text="Appendix B" />
                <asp:TreeNode Text="Appendix C" />
        
              </Nodes>
        
            </asp:TreeView>
      
    </form>
  </body>
</html>
 |