由于ASP.NET 页面生命周期,控件仅通过处理请求 ( IHttpHandler.ProcessRequest(HttpContext)
) 创建。
在迭代控件之前,您需要运行以下代码:
//this is necessary, Otherwise "Default.aspx" will show the contents of "WebForm1.aspx".
HttpWorkerRequest hwr = new SimpleWorkerRequest(this.TxtPageVirtualPath.Text, "", tw);
HttpContext fakeContext = new HttpContext(hwr);
((IHttpHandler)p).ProcessRequest(fakeContext);
下面是 Default.aspx 的完整代码:
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;
using System.Web.Compilation;
using System.Collections.Generic;
using System.Resources;
using System.IO;
using System.Web.Hosting;
namespace _1423280WebApp
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void BtnLoad_Click(object sender, EventArgs e)
{
Page p = BuildManager.CreateInstanceFromVirtualPath(this.TxtPageVirtualPath.Text, typeof(Page)) as Page;
List<String> controlList = new List<String>();
MemoryStream ms = new MemoryStream();
TextWriter tw = new StreamWriter(ms);
HtmlTextWriter htw = new HtmlTextWriter(tw);
//this is necessary, Otherwise "Default.aspx" will show the contents of "WebForm1.aspx".
HttpWorkerRequest hwr = new SimpleWorkerRequest(this.TxtPageVirtualPath.Text, "", tw);
HttpContext fakeContext = new HttpContext(hwr);
((IHttpHandler)p).ProcessRequest(fakeContext);
//I could not compile this part in VS2005
//ResourceManager.AddControls(p.Controls, controlList);
this.TxtListControls.Text = "";
foreach (Control ctr in p.Controls)
{
this.TxtListControls.Text += this.recursiveControls(p, "");
}
}
public string recursiveControls(Control control, string ident)
{
string retStr =
String.Format(
ident + "D='{0}', ClientID='{1}', Type=='{2}' \n",
control.ID,
control.ClientID,
control.GetType().FullName);
foreach (Control innerCtr in control.Controls)
{
retStr += this.recursiveControls(innerCtr, " " + ident);
}
return retStr;
}
}
}
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="_1423280WebApp._Default" %>
<!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>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Get List of Controls from:<br />
<asp:TextBox ID="TxtPageVirtualPath" runat="server">~/webform1.aspx</asp:TextBox><br />
<asp:Button ID="BtnLoad" runat="server" OnClick="BtnLoad_Click" Text="Load" /><br />
Controls:<br />
<asp:TextBox ID="TxtListControls" runat="server" Height="328px" TextMode="MultiLine"
Width="100%"></asp:TextBox></div>
</form>
</body>
</html>
带有完整示例代码的解决方案:q_11423280WebApp.7z