ASP.Net MVC 如果只輸出字串的話, 可用的事件有: 目前前台規劃配合 Template, 在各事件中做以下的工作
BaseController Constructor
TestController Construtor
Base BeginExecute: 記錄 requestContext, 提供 GetRouteValue 使用.
Child BeginExecute:
Base Initialize:
Child Initialize: 可以在這裡設定 master Page 的檔名
Child BeginExecuteCore
Base BeginExecuteCore: this.otMaster = new UW.Template(MasterPage); 在這個之後才能使用 otMaster
Child CreateActionInvoker: InitTemplate("Index.html"); 在這裡執行主要程式
Child OnAuthentication,
Base OnAuthentication
Child OnAuthorization
Base OnAuthorization
Child OnActionExecuting
Base OnActionExecuting 最後整理 Template.
Child Index(): return this.FinalHTML;