OleDb + DataSet 30 December 2003 Daniel-Fisher-(lennybacon) ASP.NET, C# <%@ 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.Con... [More]
OleDb + DataReader 30 December 2003 Daniel-Fisher-(lennybacon) ASP.NET, C# <%@ 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 = "Pro... [More]
Merry X-Mas - i'm offline... 24 December 2003 Daniel-Fisher-(lennybacon) Misc 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.
70-320 24 December 2003 Daniel-Fisher-(lennybacon) C#, Misc I just started reading "Developing XML Web Services and Server Components with Microsoft Visual C# .NET and the Microsoft .NET Framework" by Amit and Priti Kalani. According to what Peter Provost (congratulations ;-)) wrote in his blogentry it gives a few good tips and a complete overview... [More]
About making mistakes ... 24 December 2003 Daniel-Fisher-(lennybacon) Misc [Eric Sink]Make all the non-fatal mistakes that you can—don't make any of the fatal ones[...]
Automatic globalization of the Label control 14 December 2003 Daniel-Fisher-(lennybacon) ASP.NET, C# The PreRender event of the Label control allows to attach a method that can translate the value of the Text property. Connected with a resource or a database and used in a custom base class for Page or in a server control it's very easy to localize a website. override protected void&... [More]
Upgrades 10 December 2003 Daniel-Fisher-(lennybacon) Blog Yes! 1.5 dasBlog running. Looks good, runs fast. Thanks Chris.
Wishlist 05 December 2003 Daniel-Fisher-(lennybacon) Misc I downloaded the Max Payne 2 Trailer and the Need for Speed Underground Demo and both are definitely on my wishlist for x-mas.
I hate spam! 05 December 2003 Daniel-Fisher-(lennybacon) Misc 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...
yes, upload thru class that inherits IHttpHandler 04 December 2003 Daniel-Fisher-(lennybacon) C#, ASP.NET 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.