I googled for this and i have found the following links which will clear many confusions
March 03, 2009
ADO.NET Entity Framework and Linq Framework
0 comments 3/03/2009 02:48:00 PM Posted by kalyan kumar BFebruary 19, 2009
Writing Your Own HttpHandler
0 comments 2/19/2009 03:01:00 PM Posted by kalyan kumar BHi All,
February 16, 2009
Improve u r english
0 comments 2/16/2009 01:07:00 PM Posted by kalyan kumar BHi Friends,
February 13, 2009
List all Running Applications through windows script
0 comments 2/13/2009 12:12:00 PM Posted by kalyan kumar BHi All,
February 09, 2009
Open Yahoo Mail through Windows Script
0 comments 2/09/2009 06:41:00 PM Posted by kalyan kumar BHi People,
January 28, 2009
CSS Tips
0 comments 1/28/2009 09:01:00 PM Posted by kalyan kumar BThe disadvantage of using table-layout is, once the entire table is loaded then only u can view it. This is a performance issue interms of user experience, for ex if u have table with hundred images, until all the images r loaded u cannot see them. Instead if u follow some other way like using div's, it might be good.
December 22, 2008
Nullable Types in C#
0 comments 12/22/2008 06:33:00 PM Posted by kalyan kumar Bint x = 0; //valid statement
int y = null; //compile time error
This is because we know that null is a value for reference types and since int is a value type it cannot hold the value null in it. So if there comes a situation where u need to hold null value inside an int then the solution is the Nullable Type.
Any Value Type can be Nullable Type, which means that the default value can hold the possible value in its data range as well as a new value 'null' in it. The syntax for this is,