gpt4 book ai didi

c# - 如何从另一个 .ascx 中的 .ascx 获取变量?

转载 作者:行者123 更新时间:2023-11-30 14:38:55 25 4
gpt4 key购买 nike

我有两个 .ascx 文件,一个被加载到另一个 .ascx 控件中的占位符中。

所以我有:

家长控制

->子控件

我想从 ChildControl 访问 ParentControl 以获取变量数据。

到目前为止我有:

ParentControl.ascx

public UserList GetFunction
{
get
{
return someVariable;
}
}

并且在:

子控件.ascx

Protected void Page_Load(object sender, EventArgs e){

ParentControl page = new ParentControl;
string newVariable = page.GetFunction.someOtherVariable;
}

我哪里出错了,当我在父类中返回 someVariable 时它有我需要的东西,但是当我试图在 ChildControl 页面中获取它时。GetFunction 返回 null。

如果您需要更多信息,请告诉我。

更新答案:

我已经设法解决这个问题:

在父类中我调用子类中定义的一个函数并通过解析我需要的值。

父类.ascx

protected void Page_Load
{
ControlIWantToGetInformationTo.SetInfo(info);
}

子类.ascx

public void SetInfo(Info info)
{
string someString = info.TheVariableWithin;
}

一些用户提到使用这段代码,

this.parent;

但是因为我使用的是 sitecore cms,所以 this.parent 返回一个不需要的值,因为一旦通过 sitecore 运行该页面就不是物理页面。

感谢所有帮助,很高兴我设法解决了这个问题:)。

最佳答案

要访问子类中的父控件,请使用你的 child 类(class):

protected void Page_Load(object sender, EventArgs e)
{
ParentControl page = (ParentControl)this.Parent;

if(page != null)
string newVariable = page.GetFunction();
}

希望这对您有所帮助。

关于c# - 如何从另一个 .ascx 中的 .ascx 获取变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7111258/

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