Thursday, April 14, 2011

Free .NET Libraries

Qink | Free .NET Libraries

HTML5 commitment phobia

Microsoft struck by HTML5 commitment phobia • The Register: "HTML5 commitment phobia"

10 great error messages

10 great error messages | ITworld

How to convert a string into string array in Javascript?

            var onestring = "a,b,c";

            var stringlist = points.split(",");
            var stringarray = new Array(stringlist.length);
            for (i = 0; i < stringlist.length; i++ ) {
                stringarray[i] = stringlist[i];
            }

Image Action Link in ASP.NET MVC

Image + ActionLink = Html.ImageActionLink

How to check even or odd number in Javascript

function isEven(value){
 if (value%2 == 0)
  return true;
 else
  return false;
}