gpt4 book ai didi

c# - ContentPage 控件 (mv) --> MasterPage 访问

转载 作者:行者123 更新时间:2023-11-30 16:32:05 24 4
gpt4 key购买 nike

是否可以从母版页访问位于内容页中的控件(使用内容占位符,更准确地说是多 View 控件)?

情况是,我在母版页中有一个带有按钮的菜单。

现在在我的内容页面中,我有 1 个内容占位符。具有多个 View 的多 View 位于其中。

如果我按下菜单 (MasterPage) 中的一个按钮,那么它应该打开显示在内容占位符区域中的正确 View (及其控件)。

我已经设置了 ActieveViewIndex=0,但我收到了各种奇怪的行为。我必须在某处使用 ActiveViewIndex++ 做一些事情,但似乎没有任何效果。

编辑::

string a = Request.Querystring["one"]
string b = Request.QueryString["two"]
if ( a == "addOne") // where addone is a redirection to the content page from the master page button
{
mvMultieView.SetActiveView(vView1);
}
else
if ( b == "addTwo")
{
mvMultieView.SetActiveView(vView2);
}

有什么建议吗?亲切的问候。

最佳答案

您可以使用查找控件轻松做到这一点

View myView = (View)this.Master.FindControl("PlaceHolderFullMain").FindControl("PlaceHolderMain").FindControl("Mymultiview")

关于c# - ContentPage 控件 (mv) --> MasterPage 访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4410654/

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