<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="ControlTree" %>
Controls
This is static HTML (not a web control).
This is static HTML (not a web control).
File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class ControlTree : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
DisplayControl(Page.Controls, 0);
}
private void DisplayControl(ControlCollection controls, int depth)
{
foreach (Control control in controls)
{
Response.Write(new String('-', depth * 4) + "> ");
Response.Write(control.GetType().ToString() + " - " + control.ID + "
");
if (control.Controls != null)
{
DisplayControl(control.Controls, depth + 1);
}
}
}
}