//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; };
Thursday, May 5, 2011
How many ways you can define a function in Javascript
3
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.
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 : TemplateControl, IHttpHandler
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
Subscribe to:
Posts (Atom)