gpt4 book ai didi

c# - 将值传递给动态加载的 Web 用户控件

转载 作者:行者123 更新时间:2023-11-30 15:04:30 26 4
gpt4 key购买 nike

我有 ASPX 页面,在预初始化时我检查要加载的用户控件。

 control = "~/templates/" + which + "/master.ascx";

然后在页面加载时,我加载该控件

 Control userControl = Page.LoadControl(control);
Page.Controls.Add(userControl);

如何将动态加载的用户控件从 aspx 转移到 ascx?

最佳答案

您可以创建一个由所有自定义控件实现的界面。这样,您就可以转换到该接口(interface)并使用它来通过它传递数据。考虑这个例子:

public interface ICustomControl
{
string SomeProperty { get; set; }
}

...和您的控件:

public class Control1 : Control, ICustomControl
{
public string SomeProperty
{
get { return someControl.Text; }
set { someControl.Text = value; }
}

// ...
}

现在,你可以这样做:

Control userControl = Page.LoadControl(control);
Page.Controls.Add(userControl);

if (userControl is ICustomControl)
{
ICustomControl customControl = userControl as ICustomControl;
customControl.SomeProperty = "Hello, world!";
}

关于c# - 将值传递给动态加载的 Web 用户控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10246082/

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