Category: Uncategorized
MSSQL: Show database information about size, free space, last database backups
The below SQL will give you:database_id name state_desc recovery_model_desc total_size data_size data_used_sizelog_sizelog_used_sizefull_last_datefull_sizelog_last_datelog_size

How to fix jQuery.load() in IE for cached images
Solution 1, removing the cache by adding a datetime string to the image src: $(‘<img/>’) .attr(‘src’, ‘image_url?’ + new Date().getTime()) .load(function() { alert(‘Image loaded’); }); This solution works almost everytime but sometimes it has introduced even more IE weirdness for me. It can also be an costly affair if you have many visitors why I […]