asp.net 中母版页、用户控件中属性的调用、赋值方法求解。
例如:1、载入母版页MasterPageFile="web.master",我要给母版页中的labelmaster.Text赋值,还有获取他的值。2、我要给用户控件<%@...
例如:
1、载入母版页MasterPageFile="web.master",我要给母版页中的labelmaster.Text赋值,还有获取他的值。
2、我要给用户控件<%@ Register Src="muban/uctop.ascx" TagName="uctop" TagPrefix="uc" %<uc:uctop ID="uctop" runat="server" />中的labeltop.Text赋值,还有获取他的值。
3、载入母版页MasterPageFile="web.master",母版页中包含<%@ Register Src="muban/uctop.ascx" TagName="uctop" TagPrefix="uc" %<uc:uctop ID="uctop" runat="server" />,我要给母版页中的用户控件中的labelmu.Text赋值,还有获取他的值。
求大神耐心解答!!! 展开
1、载入母版页MasterPageFile="web.master",我要给母版页中的labelmaster.Text赋值,还有获取他的值。
2、我要给用户控件<%@ Register Src="muban/uctop.ascx" TagName="uctop" TagPrefix="uc" %<uc:uctop ID="uctop" runat="server" />中的labeltop.Text赋值,还有获取他的值。
3、载入母版页MasterPageFile="web.master",母版页中包含<%@ Register Src="muban/uctop.ascx" TagName="uctop" TagPrefix="uc" %<uc:uctop ID="uctop" runat="server" />,我要给母版页中的用户控件中的labelmu.Text赋值,还有获取他的值。
求大神耐心解答!!! 展开
2个回答
展开全部
母板页:取值((Label)Master.FindControl("labelmaster")).Text;
赋值 ((Label)Master.FindControl("labelmaster")).Text="456";
用户控件:赋值((Label)uctop.FindControl("labeltop")).Text = "123";
取值((Label)uctop.FindControl("labeltop")).Text;
母版页的用户控件: 赋值((Label)((UserControl)Master.FindControl("uctop")).FindControl("labelmu")).Text = "uuuuu";
取值((Label)((UserControl)Master.FindControl("uctop")).FindControl("labelmu")).Text
赋值 ((Label)Master.FindControl("labelmaster")).Text="456";
用户控件:赋值((Label)uctop.FindControl("labeltop")).Text = "123";
取值((Label)uctop.FindControl("labeltop")).Text;
母版页的用户控件: 赋值((Label)((UserControl)Master.FindControl("uctop")).FindControl("labelmu")).Text = "uuuuu";
取值((Label)((UserControl)Master.FindControl("uctop")).FindControl("labelmu")).Text
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询