Ejemplo n.º 1
0
 protected void Page_Unload(object sender, EventArgs e)
 {
     MyModule.WriteLog(this.GetType() + "Page:UnLoad");
 }
Ejemplo n.º 2
0
 protected override void Render(HtmlTextWriter output)
 {
     MyModule.WriteLog(this.GetType() + "Page:Render");
     base.Render(output);
 }
Ejemplo n.º 3
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     MyModule.WriteLog(this.GetType() + "Page:Event");
 }
Ejemplo n.º 4
0
 public override void Validate()
 {
     MyModule.WriteLog(this.GetType() + "Page:Validate");
 }
Ejemplo n.º 5
0
 protected void Page_init(object sender, EventArgs e)
 {
     MyModule.WriteLog(this.GetType() + "Page:Init");
 }
Ejemplo n.º 6
0
        public void ProcessRequest(HttpContext context)
        {
            MyModule.WriteLog("Handler:" + DateTime.Now.ToString("yyyy-MM-dd"));

            //context.Response.Write("    Handler:" + DateTime.Now.ToString("yyyy-MM-dd"));
        }