Easiest way to Stay Young

HOW TO STAY YOUNG 1. Keep only cheerful friends. The grouches pull you down. 2. Keep learning. Learn more about the computer, crafts, music, gardening, whatever. Never let the brain idle. ‘An idle mind is the devil’s workshop.’ And the devil’s name is Alzheimer’s. 3. Enjoy the simple things.. 4. Laugh often, long and loud. […]

Read more โ†’

Extensions Methods in C#

Extensions Methods in C# ——————————- Extension method is new to C# 3.0 (.NET 3.5).Its allow you to add new method to the existing class. a. Extension method allows you to add new method to the existing class without modifying the code, recompiling or modifying the original code. b. Extension method are special kind of static […]

Read more โ†’

IIS Developer Express or Same Old Cassini

I am trying out the features of newly released Microsoft Web Matrix and IIS Developer Express. I felt it’s cool to have something like this.  I Tried both IIS 7.5 and IIS Developer Express simultaniously working on Windows 7. I tested it with IIS 5.1 and IIS Developer Express simultaniously working with Windows XP Sp3. Accidently […]

Read more โ†’

Microsoft Data Access Application Block Quick Code Snippet

I was just testing through the Microsoft Data Access Application Block 5.0 which is part of Enterprise Library 5.0. Just thought of sharing the code. Libraries Needed (Add reference to the following libraries from Enterprise Library 5.0 or 4.x) Microsoft.Practices.EnterpriseLibrary.Common.dll Microsoft.Practices.EnterpriseLibrary.Data.dll Here’s the connection string to be declared Connection String C# Source Code Can i […]

Read more โ†’

Master Page Support in ASP.NET 1.1

We know that ASP.NET 2.0 has introduced the Masterpages. but some us might be thinking is there any way to do this in ASP.NET 1.1. ASP.NET 1.1 doesnot directly supports it. But you can do it using Spring.NET Web Application Framwork. The Spring.Web framework provides a nice set of features through which we can enable […]

Read more โ†’