Category: ASP.NET 2.0

  • Myspace Statistics

    I am watching a programming presentation from the Myspace tech team right now. They are going over their stats and was blown away by the numbers (as of April 2007): 185 Million Registered Users 50.2% Female / 49.8% Male Primary Age Demo: 14 – 34 Over the last 5 months, had between 39 and 45 […]

  • Add Additional Information to Your Exceptions

    When Enterprise Library was called Microsoft Application Blocks, if you wanted to log an Exception, you would write (assuming “ex” is an Exception): ExceptionManager.Publish(ex) And if you wanted to log some extended properties you could do something like this: NameValueCollection customerInfo = new NameValueCollection(); customerInfo.Add(“name”,”scott”); customerInfo.Add(“email”,”blah@blah.com”); ExceptionManager.Publish(ex,customerInfo); Now that I am upgrading all legacy code […]