閱讀118 返回首頁    go 阿裏雲 go 技術社區[雲棲]


在哪裏添加Page_PreInit事件

 

一.在頁麵的cs類當中寫 override vs會智能提示重寫OnPreInit
C# code

    protected override void OnPreInit(EventArgs e)
    {
        this.Page.Theme = “blue”;
    }

 

二.手動寫入代碼
protected override void OnPreInit(EventArgs e)
{
      this.Page.Theme = “blue”;
}

最後更新:2017-04-02 22:15:58

  上一篇:go c#二維數組聲明簡單例子
  下一篇:go C#泛型基礎