在 Page 裡面處理 PreInit 事件,然後在事件常式中加入 Page.MasterPageFile = "..."
只有在 PreInit 事件中,才能設定 MasterPageFile 屬性;在 PreInit 事件之後,嘗試設定 MasterPageFile 屬性,將會擲回 InvalidOperationException 例外狀況。
Sub Page_PreInit(ByVal sender As Object, ByVal e As EventArgs) _Handles Me.PreInit
Me.MasterPageFile = "~/NewMaster.master"
End Sub
沒有留言:
張貼留言