# Friday, February 20, 2004

I have installed BlogJet. It seems to fit my needs to blog from the desktop.

Friday, February 20, 2004 5:57:47 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [23]  | 
# Tuesday, February 17, 2004

A lot of server moves happend in the last few days. AspHeute.com, DotNetGerman.com (where my blog is) and CodeProject.com just to name a few. I hope this will speed up my life a bit.

Tuesday, February 17, 2004 10:44:02 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [27]  | 

fast, faster ... wow.

Tuesday, February 17, 2004 10:39:03 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [24]  | 
# Sunday, February 15, 2004

CodeProject.com used to be one of my favorite sites.

R.I.P or what is going on.

:-(

Sunday, February 15, 2004 9:15:19 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [25]  | 
# Friday, February 13, 2004

I just wanted to write this down somewhere to keep it in mind but it may be useful for others to.     protected void Application_Start(Object sender, EventArgs e)
    {
        //Application
        //Request
    }

    protected void Session_Start(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Session
        //Response
    }

    protected void Application_BeginRequest(Object sender, EventArgs e)
    {
        //Application
        //Request
        //Response*
    }
    
    protected void Application_PreSendRequestHeaders(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Session
        //Response
    }

    protected void Application_AuthenticateRequest(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Response*
    }

    protected void Application_PostRequestHandlerExecute(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Session
        //Response*
    }

    protected void Application_EndRequest(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Response*
    }
    
    protected void Session_End(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Session
        //Response
    }

    protected void Application_Error(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Session
        //Response
    }

    protected void Global_Error(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Session
        //Response
    }
    
    protected void Application_End(Object sender, EventArgs e)
    {
        //Application
        //Request
        //User
        //Session
        //Response
    }

* Produces output

ASP.NET | C#
Friday, February 13, 2004 2:54:56 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [18]  |