Function to convert any base to decimal
Up to base 36, anyhow. This is a port from old C. I think it works (did it on paper). // return decimal version of any number up to base […]
Continue Readinglog4net and Visual Studio 2005 — quick and easy
So you have an ASP.NET application and want to do some custom logging other than by using Response.AppendToLog(). Or maybe you have a console app that you want to log what […]
Continue ReadingGoogle Calendar API in C#
Google recently released an API for Google Calendar. Even though the Google Calendar UI is already pretty slick, developers can now write applications to extend the functionality further. C# and […]
Continue ReadingConverting a Tab-Delimited File to a DataSet
I recently needed to parse a tab-delimited file and I figured it would be easier if I could manipulate it in DataSet form. I came across Dave O’s article on […]
Continue ReadingUsing Visual Studio to Debug Javascript
I avoided debugging javascript for a long time because 1) I didn’t write a lot of it, and 2) it used to be a pain to do so with Visual […]
Continue ReadingMoving ASP.NET Membership to SQL Server 2005
As I posted previously, this was going to be a longer post. But it got erased because I clicked the wrong button on my mouse, so you all get the […]
Continue ReadingSqlDataSource Command Timeout
I was dealing with an ASP.NET SqlDataSource query that kept timing out, which was annoying because I was trying to run my application through the Database Tuning Advisor (a SQL Server […]
Continue Reading