我想将<body>
my暴露Master Page
给我的Content Pages
. 因此我这样做:
大师.aspx
<body id="MasterPageBodyTag" runat="server">
大师.aspx.vb
Public Property Messaging() As Messaging
Get
Return mMessaging
End Get
Set(ByVal value As Messaging)
mMessaging = value
End Set
End Property
Public Property BodyTag() As HtmlGenericControl
Get
Return MasterPageBodyTag
End Get
Set(ByVal value As HtmlGenericControl)
MasterPageBodyTag = value
End Set
End Property
内容页面.aspx
<%@ MasterType VirtualPath="~/my.master" %>
内容页面.aspx.vb
Master.BodyTag.Attributes.Add("onload", "MyScript()")
但是,我不仅没有BodyTag
在我的内容页面中获得 ,而且我还收到一个错误,我无法访问该Messaging
属性(错误:不是 Master 的成员),该属性之前工作正常。可能是什么原因?