Confused old man

TWIL: The weird way .NET’s config system parses JSONs

0
The day is a Friday. We were calmly deploying an app we tested locally to the test environment. The error we had was pointing towards the config files. Off...

Ajax.NET – A free library for the Microsoft .NET Framework

0
Asynchronous JavaScript with XmlHttpRequest - C# Example Download the latest Ajax.dll (5.5.13.1) to use it for free in your web projects. To learn more about AJAX, visit:WikipediaA New Approach to Web...

Codesmith, netTiers and reserved words

0
Started today using Codesmith tools today after a year or so since the last time that I used this great generation template based tool. I had to generate...

Cast vs OfType: Which should i use to cast an object’s list?

0
In this post i will explain what’s the differences between Cast() and OfType() methods using LINQ, and i will also explain when we should use each method. These methods...

nettiers – GetBy Index problem with StoredProcedure long name

0
Today I've discovered a problem with CodeSmith nettiers templates because it was possible to generate two SPs with the same name, for different entities. This happens when there are two indexes for...

XNA is Not an Acronym

0
Are you a gamer? Are you a .Net developer? Do you still dream about being a game developer? Then Microsoft has good news for you. If you answers...

How to serialize an array or a list?

0
I needed to serialize an array few weeks ago and i found one way to perform this serialization.I performed the serialization for the following objects:_persons.Add(new Employee { FirstName =...

Using Deployment setting on Production Environment

0
When i studied for the Microsoft exam (70-562, Microsoft .NET Framework 3.5, ASP.NET Application Development) i found an interesting setting that i didn’t known, the Deployment.This configuration setting ensures...

Scott Woodgate and team – Announcing Windows Workflow Foundation

0
Scott Woodgate and team - Announcing Windows Workflow FoundationAt the PDC Microsoft announced Windows Workflow Foundation. Here Scott Woodgate and team (Abhay Parasnis and Paul Andrew) demonstrate the power...

How to create a custom section for an application config file

0
First we need to create a custom ConfigurationElement. This configuration element only has a value attribute. public class MyConfigurationElement : ConfigurationElement { /// <summary> ///...