In SQL Server 2008, to see all available db backups:
select * from msdb.dbo.backupset
A Log of Coding Solutions
by Webhead
In SQL Server 2008, to see all available db backups:
select * from msdb.dbo.backupset
by Webhead
by Webhead
I can’t center the Image or there are spaces between my images. If I delete the spacing in the code it goes away. Why is this?
img { display:inline}
If the img has no display attribute defined, the default display is inline. This means that the image can be centered with text-align:center from an outer element. However, if there is a space between images, it may show a space when it is displayed. You can think of inline display as treating the image like text.
img {display:block}
If the img has a display:block attribute defined, the image cannot be centered with the text-align:center from an outer element. The image will take up the full line so that the elements before and after will appear on a different line. Because the image takes up the whole line, centering the image doesn’t have any effects. Spaces between images also do not show because the image fills the whole line.
A nice explanation of inline vs block can be found here: http://www.webdesignfromscratch.com/html-css/css-block-and-inline/
by Webhead
Some great tools for optimizing images so that it downloads faster:
http://www.webdesignbooth.com/12-really-useful-image-optimization-tools-for-web-designers/
by Webhead
Apparently IE clears the form data by design. Mozilla and other browsers keep form data when the back button is pressed. I have not found a way around this besides setting cookies. This is different from getting javascript to run as that works ok.
http://www.scu.edu.au/flds/index.php/faq/249
by Webhead
– Lord Byron
Having a position:relative on an element causes the jQuery fadeTo and fadeIn/fadeOut functions to not work in IE8 and possibly other IEs.
Take out position: relative.