c#
My adventures in c# land.
browserCaps A quick fix for rendering ASP.NET properly in firefox for example
Ever wonder what the difference between varchar and nvarchar was? Well I'm still not sure what it is but one thing I discovered today was that to add japanese characters in a database, you have to use the nxxx version datatype. For example, I have to develop a japanese version of a website I created at work and ended up with a bunch of ??????? instead of the japanese characters in the table I store the content. To my surprise, the only thing I was missing was the letter 'N'. I changed the datatype...