我有一个母版页(myMaster),其中有一个变量(让调用是 myInteger),我想在外部类中访问。
通常我只是在我的 aspx 中这样做: <%@ MasterType VirtualPath="myMaster.master" %>
然后我可以在我的代码中访问它:Master.myInteger ...
我的问题是我想在另一个类中访问它(没有.aspx)
我试着做 Master.MasterPageFile = "~/myMaster.master" Master.AppRelativeVirtualPath = "myMaster.master"
但随后 Master.myInteger 无法识别。
我不确定我想做什么是可能的......有什么想法得到这个变量吗?