PNG Files Transparency Problem(Grey Color) in Internet Explorer

Internet Explorer below 7.0 does not support 24-bit alpha channel transparent PNG images. PNG image background turn into gray color rather then transparent. IE version 7 and above completely solved this issue and fully support PNG images.? Other modern browser such as Firefox, Opera, Flock support png images from start.…continue reading →

Download & Install Windows XP Service Pack 3(SP3)

Microsoft has released XP SP3 with bugfixes and new features.? This version includes old released update for Windows XP and bug fixes released in SP2. SP3 also includes following new? features: Support for Microsoft’s Network Access Protection security technology Microsoft Kernel Mode Cryptographic Module Black Hole Router detection algorithm Keyless…continue reading →

Set / Retrieve Script Timeout in ASP

The ScriptTimeout property in ASP specifies the amount of run-time in seconds for a script before it terminates. The default value is 90 seconds set by IIS. Set the script timeout: <% Server.ScriptTimeout=200 %> Retrieve the current value of the ScriptTimeout property: <% response.write(Server.ScriptTimeout) %>continue reading →

Bill Gates Leaving Microsoft – Retirement Session June 2008

httpv://www.youtube.com/watch?v=3HA4lSUhlbw Bill Gates is retired from Microsoft at the age of 52 to spend more time for the Bill and Melinda Gates Foundation. Gates is still largest share holder and Microsoft chairman but left at June 27, 2008 as regular employee. Now, it is up to Bill Gates successors how…continue reading →

Create JavaScript Confirm Box for Record Deletion

Confirmation before deletion of record is very useful to preserve data from accidental record deletion. With confirmation process will be in two steps. Here is the javascript way to ask user whether they want to delete record or not. <a onclick="return confirm('Are you sure you want to delete?')" href="page.page?act=delete&id=1">Delete</a> You…continue reading →