2019/05/23

轉貼ASP.Net WebForm Page事件發生先後順序

沒有使用 Master Page 情況下:
Page.PreInit
Page.Init
Page.InitComplete
Page.PreLoad
Page.Load
Page.LoadComplete
Page.PreRender
Page.PreRenderComplete

使用了 MasterPage 情況, MasterPage 與 ContentPage 事件順序:
ContentPage.PreInit
Master.Init
ContentPage.Init
ContentPage.InitComplete
ContentPage.PreLoad
ContentPage.Load
Master.Load
ContentPage.LoadComplete
ContentPage.PreRender
Master.PreRender
ContentPage.PreRenderComplete

[ASP.NET] Page事件發生先後順序 @ 我要回家想一想~ :: 痞客邦 ::
http://jojosula001.pixnet.net/blog/post/161458889

ASP.NET 網頁存留週期概觀
https://technet.microsoft.com/zh-tw/ms178472(v=vs.71)

2019/05/22

以NPOI為例,使用ASP.NET MVC 匯出Excel

原本想說從WebForm到MVC寫法會不會有什麼不同,結果沒想到幾乎是一模一樣

以下展示範例:

2019/05/14

[ASP.NET]ASP.NET WebForm 使用表單驗證登入

除了用Session外,ASP.NET提供了表單驗證登入的機制

以下簡單的範例展示

WebConfig