fooshen.blogspot.com
volatile constants: July 2006
http://fooshen.blogspot.com/2006_07_01_archive.html
Wednesday, July 26, 2006. System.Nullable. ah, what bliss. I've done my share of development where we resorted to use. To represent a null value from the database, and then make the necessary behavior changes in the busineess logics to deal with it. Another path is to wrap these values using a struct. Either way, it is quite a hassle. Now with .Net 2.0, we got the System.Nullable type. And coupled with generics, suddenly we can say hello to int? Now here's a conundrum. If we do the following:. I = null;.
fooshen.blogspot.com
volatile constants: May 2006
http://fooshen.blogspot.com/2006_05_01_archive.html
Monday, May 29, 2006. Sharepoint 2007: The neat and tidy. After installing Sharepoint 2007 Beta2, the very first thing I noticed (besides all the bells and whistles), is the superior user interface; souped up with ajax at every turn. There is hardly any dropdownlist box, replaced with a rather sweet DHTML drop down menu that loads asynchronously. Now, How the heck do they do it - Part one. It is not supported by any standard CSS implementations. The trick is to use a small image with a red underline,...
fooshen.blogspot.com
volatile constants: June 2006
http://fooshen.blogspot.com/2006_06_01_archive.html
Thursday, June 15, 2006. Sharepoint 2007 on a Domain Controller. Recently, while trying to setup a demo system on a Virtual PC that tries to be more than one server (DC, DB, IIS.), I remembered an error that my colleague came across when running Sharepoint 2007 Beta 2 on a Domain Controller. After a site has been created, we get the message: "Microsoft Office Sharepoint Server 2007 Beta 2 Trial Period Expired". Posted by fooshen at 12:07 PM. Friday, June 02, 2006. Implicit vs Explicit Casting. However, t...