satishgaudo.com

Understanding technology

Archive for July, 2009

Want to install windows office 2007, but not having product key

Nice article on how to install windows office 2007 without having any product key: http://blog.taragana.com/index.php/archive/microsoft-office-2007-product-key-free/#comment-515235 Note: i have original home edition of windows xp.

28 July 2009 at 01:12 - Comments

Use GET for AJAX Requests

The Yahoo! Mail team found that when using XMLHttpRequest, POST is implemented in the browsers as a two-step process: sending the headers first, then sending data. So it’s best to use GET, which only takes one TCP packet to send (unless you have a lot of cookies). The maximum URL length in IE is 2K, [...]

21 July 2009 at 19:40 - Comments
Thanks for posting about this, I would love to read more about this topic.

Calling Ajax script on onscroll event of an element:

In the example below element “adListContainer” is an div, on onscroll event of which an ajax function is called to load the next set of records. It is required that the function be [...]

17 July 2009 at 14:26 - Comments