Thursday, May 5, 2011

How many ways you can define a function in Javascript

3

    //1. Formal way 
    function isNimble() { return true; }
    //2. Set to a variable. Javascript actually treats functions as just another type of object
    var canFly = function () { return true; };
    //3. anonymous function
    window.isDeadly = function () { return true; };

Process, People, and Pods, A series of blogs on the impact of Agile

http://processpeoplepods.blogspot.com/


A series of blogs on the impact of Agile, focusing beyond the process impacts to the people issues and organizational challenges.

Wednesday, May 4, 2011

Best Javascript & jQuery websites/blogs References


Best Javascript & jQuery websites/blogs References


Learning Advanced JavaScript: 
By John Resig from jQuery


JavaScript Language Specification(ECMA-262), HTML Version

PDF version 






What is ashx in ASP.NET

What is ashx ? HTTP Generic handler
A handler is responsible for requests from a browser.  It is a class that implements the IHttpHandler interface.
A webforms page, aspx file,  is a another class with IHttpHandler interface.
namespace System.Web.UI
{
    public class Page : TemplateControlIHttpHandler

Handler can be called by by file extension or directly.
Only one handler can be called per request.

Reference:
Call ASP.NET Handler (ASHX) by JavaScript




jQuery 1.6 Released with Microsoft CDN

jQuery: » jQuery 1.6 Released

Microsoft: http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.min.js