# Tuesday, December 30, 2003
<%@ Page language="C#" %>
<script language="C#" runat="server">
  private void Page_Load(object sender, System.EventArgs e)
  {
    System.Data.OleDb.OleDbConnection _conn =
     new System.Data.OleDb.OleDbConnection();
    _conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" +
     "Data Source=D:\\WebRoot\\data\\data.mdb";
    System.Data.OleDb.OleDbCommand _cmd = conn.CreateCommand();
    _cmd.CommandType = System.Data.CommandType.Text;
    _cmd.CommandText = "SELECT Name FROM Users WHERE ID=1";
    System.Data.OleDb.OleDbDataAdapter _adapter =
     new System.Data.OleDb.OleDbDataAdapter();
    _adapter.SelectCommand = _cmd;
    System.Data.DataSet _dataset = new System.Data.DataSet();
    _conn.Open();
    _adapter.Fill(dataset, "UserTable");
    _conn.Close();
    if(_dataset.Tables["UserTable"].Rows.Count>0)
    {
      this.TextBox1.Text =
       _dataset.Tables["UserTable"].Rows[0][0].ToString();
    }
  }
</script>
<html>
<body>
<form ID="Form" runat="server">
 <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</form>
</body>
</html>
ASP.NET | C#
Tuesday, December 30, 2003 2:47:51 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [24]  | 
<%@ Page language="C#" %>
<script language="C#" runat="server">
 private void Page_Load(object sender, System.EventArgs e)
 {
   System.Data.OleDb.OleDbConnection _conn =
    new System.Data.OleDb.OleDbConnection();
   _conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" +
    "DataSource=D:\\WebRoot\\data\\data.mdb";
   System.Data.OleDb.OleDbCommand _cmd = _conn.CreateCommand();
   _cmd.CommandType = System.Data.CommandType.Text;
   _cmd.CommandText = "SELECT Name FROM Users WHERE ID=1";
   _conn.Open();
   System.Data.OleDb.OleDbDataReader _reader = cmd.ExecuteReader();
   if(_reader.Read())
   {
     this.TextBox1.Text = _reader.GetString(0);
   }
   _reader.Close();
   _conn.Close();
}
</script>
<html>
<body>
<form ID="Form" runat="server">
 <asp:TextBox id="TextBox1" runat="server
"></asp:TextBox>
</form
>
</body>
</html
>
ASP.NET | C#
Tuesday, December 30, 2003 2:45:16 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [26]  | 
# Wednesday, December 24, 2003

Merry X-Mas to all out there.
I'll be offline the next days as i think the most of us are.

So if i won't be back in this year, i wish a happy new one and we'll see us in 2004.

Wednesday, December 24, 2003 11:46:23 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [21]  | 
C# | Misc
Wednesday, December 24, 2003 11:32:18 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [23]  | 

[Eric Sink]Make all the non-fatal mistakes that you can—don't make any of the fatal ones[...]

Wednesday, December 24, 2003 10:32:44 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [19]  | 
# Monday, December 15, 2003
Automatic globalization of the Label control
ASP.NET | C#
Monday, December 15, 2003 12:11:43 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [19]  | 
# Wednesday, December 10, 2003
Upgrades
Wednesday, December 10, 2003 9:12:18 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [25]  | 
# Saturday, December 06, 2003
Wishlist...
Saturday, December 06, 2003 1:02:41 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [39]  | 
# Friday, December 05, 2003

this is what my webmail account just told me:

6229 Nachrichten (1.481.224,57 kB von 10.000,00 kB / 14.812,25%)

it will take a while till the page is loaded so i start writing this...

Friday, December 05, 2003 10:20:11 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [23]  | 
# Thursday, December 04, 2003

I just wrote an upload thru class that inherits IHttpHandler.

Joerg tried to help me (thx) but i had to get it by trying myself.

I'll post what i wrote in the next days, when i finished the rest of the code and the documentation.

C# | ASP.NET
Thursday, December 04, 2003 10:07:49 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [26]  | 

I'm writing a few articles and (as blogged before) code a lot on  the new project, while building a few controls i always wanted to build. In other words i am busy.

Thursday, December 04, 2003 4:17:49 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [21]  | 
# Thursday, November 27, 2003
Thursday, November 27, 2003 9:01:16 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [25]  | 

[Chris Sells] Markus Mielke, a PM doing performance for the Avalon team,
lists some pointers on perf in the PDC build of Longhorn and [...]

Thursday, November 27, 2003 8:54:56 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [29]  | 
I started a new project. A e-commerce solution i wrote once in VB6 as a COM+ component and that is still used by Philips (Consumer Communications)
Thursday, November 27, 2003 8:46:59 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [21]  |