基本上我有一个带有很多代码的userControl.ascx ...这个用户控件在Child.MasterPage中使用,而Child.MasterPage继承自Parent.MasterPage。
在Parent.MasterPage中,我在.cs文件中有一个方法,此方法接受一个字符串并将其传递给文字。
问题:
我花了好几个小时尝试将一个字符串从我的UserControl直接传递给Parent.MasterPage.cs方法而没有运气。 child.MasterPage没有c#文件,它只是继承自parent.master
我正在使用的一行代码,以便我可以将值传递给专利.MasterPage读取如下..但我无法传递给方法请帮助!
MasterPage myMasterPage = this.Parent.Parent.Page.Master.Master;.
答案 0 :(得分:1)
尝试类似于((ParentMaster)this.parent.parent).SomeMethod()