JSON and AJAX:
What is JSON?
Once you've successfully fired an AJAX request, what sort of response should the server give? An XML document? An HTML snippet? A JSON string which is converted to a JavaScript object?
JSON stands for JavaScript Object Notation and is a lightweight data-interchange format. Because it is text-based it is easy for humans to read and write, and it has a regular syntax...
Saturday, March 30, 2013
Wednesday, March 27, 2013
Programming Design Pattern succinctly

To all to my friends who dream writing code using patterns, who ardently believe in the spirit of programming based off design pattern to achieve code re usability and maintainability. To me, design patterns always mystic. I always wanted to master them, harness and deploy them for...
.Net Format strings Cheatsheet

Microsoft.Net Format Strings:
What are format strings.. Format strings are used to represent data in a specific format for display purposes or readability purpose. Every type (DateTime, string, Number) in .net type system has it's own set of format strings which customize the output in various ways....