# Saturday, April 17, 2004
Saturday, April 17, 2004 1:24:20 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [22]  | 
# Thursday, March 25, 2004

i'm 24, it's my birthday.

Thursday, March 25, 2004 8:24:19 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [26]  | 
# Wednesday, March 24, 2004

I moved (only a few miles - still Wuppertal) and i'm still waiting for telephone and internet :-(

So i have a lot of time for coding a few HttpHandlers and Controls i wanted to build a long time ago. I'm having fun with C#.

Wednesday, March 24, 2004 1:55:29 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [32]  | 
# Saturday, March 06, 2004
 
from InfoWorld
C#
Saturday, March 06, 2004 9:18:15 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [18]  | 
C#
Saturday, March 06, 2004 9:10:08 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [21]  | 

I had some trouble with a WebForm, including a OleDbDataAdapter, a DataSet and uses the OleDbCommandBuilder to publish the CommandText property to the DataAdapter, that tries to update five Decimal columns in a Access database. No matter what i did the Update method of the DataAdapter threw a DBConcurrencyException. After googling a few minutes i found someting about the ODBC/JET data type limit.
So i canged the Decimal to a Double and now all works fine.

 

C#
Saturday, March 06, 2004 8:59:41 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [36]  | 
# 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]  |