gpt4 book ai didi

ASP.NET 自定义用户控件动态添加

转载 作者:行者123 更新时间:2023-12-03 11:49:00 27 4
gpt4 key购买 nike

我很难将具有自定义用户控件的页面直接修改为 ASPX 页面,现在只需要在需要时动态加载它。用户控件确实通过 ASCX 文件具有 html 和其他控件,并且在代码隐藏中有代码。
我已经阅读了多个页面,发现我不能直接实例化用户控件,但应该使用 Page.LoadControl(...) .问题不在于编译,而是当页面加载控件时,ASCX 中的所有控件都为空,然后崩溃。
如何使用在 ASCX 和代码隐藏中动态包含代码的用户控件?
编辑:
我在做什么的例子(PageLoad 或 PagePreRender 或 PagePreInit)

      Control c = LoadControl(typeof(MyControl), null);
myControl= (MyControl)c;
myControl.ID = "123";
myControl.Visible = false;
Controls.Add(myControl);
MyControl 确实有例如 <div id="whatever" runat="server"> ...在 MyControl 内部,它将可见性设置为 True 或 False ...但是当它这样做时,现在它崩溃了,因为“whatever” div 为 NULL。

最佳答案

我所做的是使用 Page.LoadControl Page_Init 中的方法将自定义用户控件添加到页面上的占位符。

protected void Page_Init(object sender, EventArgs e)
{
//MyControl is the Custom User Control with a code behind file
MyControl myControl = (MyControl)Page.LoadControl("~/MyControl.ascx");

//UserControlHolder is a place holder on the aspx page
// where I want to load the user control to
UserControlHolder.Controls.Add(myControl);
}
这对我来说很好。
这是动态加载的用户控件的代码:
MyControl.ascx.cs
public partial class MyControl : System.Web.UI.UserControl
{
protected void Page_Init(object sender, EventArgs e)
{
LiteralControl lit = new LiteralControl("Test Literal Control");
Page.Controls.Add(lit);
}

protected void Page_Load(object sender, EventArgs e)
{
whatever.Visible = true;

if (IsPostBack)
{
whatever.Visible = false;
}
}
}

关于ASP.NET 自定义用户控件动态添加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2275625/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com