Amazon Goes Ajax - New Interface Today
Well, mark today down in UI design for websites and e-commerce. Amazon.com unveiled their new interface and it is Ajax (particular the Dynamic HTML aspect).
Well, mark today down in UI design for websites and e-commerce. Amazon.com unveiled their new interface and it is Ajax (particular the Dynamic HTML aspect).
Let it be known throughout the land, I received my first ever CERTIFIED e-mail today in Yahoo Mail. Will this be a turning point in web history?

Apache has around a 10% market share advantage over IIS now, which is the smallest gap between the two since IIS was launched in 1996.
Labels: Hosting, web server
A simple tutorial for VB.NET folks.
Try
'for testing: Throw New Exception("This is a sample exception.")
'put your real code here
Catch ex As Exception
Dim rethrow As Boolean = Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.ExceptionPolicy.HandleException(ex, "Global Policy")
If rethrow Then
Throw
End If
End Try
Labels: ApplicationBlocks
I just started working the the replacement for Microsoft's Application Blocks. ExceptionManagement, called Microsoft.Practices.EnterpriseLibrary. Specifically, I'm using the Logging class. Guess how many overloads there are for the Write method? NINETEEN!!! 19 overloads, that's right. Imagine if you did not have Intellisense. In my opinion, overloads undermine the whole organization of Object Oriented Programming (OOP), and are to be used SPARINGLY.
Labels: OOP