2008年11月18日 星期二

動態套用MasterPageFile樣板的方法

在 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

沒有留言:

張貼留言