How to center a div block using styles

Today, I came across the problem of having to center a div block on a web page without having all its content being centered. I thought of using text-align: center; but then all the div inner elements would have inherited that style, and that is not what I wanted. I wanter the text inside the […]

READ MORE

How to keep track of database structure changes

Here is an interesting method for keeping track of modifications brought to an SQL Server database structure: http://www.codeproject.com/KB/database/sql2005dba.aspx This is quite useful when working on a new version of a database driven web site, since all modifications made to the development database will eventually have to be applied to the QA database and finally the […]

READ MORE