如何从ASP.NET中的母版页访问内容页面控件

前端之家收集整理的这篇文章主要介绍了如何从ASP.NET中的母版页访问内容页面控件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
内容页面访问主页面控件非常简单
protected void Page_Load(object sender,EventArgs e)
{
    // content page load event
    DropDownList thisDropDown = this.Master.FindControl("someDropDown") as DropDownList;
    userLabel.Text = thisDropDown.SelectedValue;
}

但是如何从主页面访问内容页面的控件.假设内容页面中有一个文本框,在母版页中有一个按钮.我想要的是,当我点击母版页按钮时,我想在主页面标签内容页面显示文本框的文本.怎么实现呢请帮我代码示例.谢谢.

解决方法

在主页按钮单击事件应访问页面内容: –
protected void Button1_Click(object sender,EventArgs e)
{
    TextBox TextBox1 = (TextBox)ContentPlaceHolder1.FindControl("TextBox1");
    if (TextBox1 != null)
    {
        Label1.Text = TextBox1.Text;
    }
}
原文链接:https://www.f2er.com/aspnet/250495.html

猜你在找的asp.Net相关文章