seattlepi.com Microsoft Blog

seattlepi.com Microsoft Blog: “New IE, free anti-spyware Two of the pieces of news emerging from Bill Gates’ keynote address at the RSA Conference this morning:…

Writing Secure Code

.NET Security or Writing Secure Code in .NET is my one of new found interests as far technical stuff is concerned. I had already delivered…

Locking for Synchronization

If you have a scenario where a piece of code/resource is called/accessed by more than one execution sequences (threads for example) asynchronously, and you want…

Rainbow portal rocks!

I recently completed developing/configuring funcitonal prototype for my banks intranet portal. I based my portal on Rainbow Portal, which is one of the most powerful…

Auto Increment Column In DataTable

DataColumn objDataColumn = new DataColumn(); objDataColumn.ColumnName = “AutoColumn”; objDataColumn.AutoIncrement = true; objDataColumn.AutoIncrementSeed = 1; objDataColumn.AutoIncrementStep = 1; objDataTable.Columns.Add(objDataColumn);