The Design and Development Benefits of CSS
A common problem in many businesses is that everyone works on a separate aspect of a project and then brings it together and tries to make it look uniform. Inline styles, BRs, and HTML tags can make a page look the way you want it to, but when you want to change the look of your site, you’ll find these methods can be a real pain. The problem will be even greater for your designer. Each page will be a single design, too complex to change easily and cost-effectively.
Developer Tip Get column names for a SQL query
July 30th 2009 | Jonathan Cogley
Developer Tip – Get column names for a SQL query
This tip combines an earlier tip to show an easy way to grab the columns of a table and use Regular Expressions to format your SQL.
Jonathan Cogley is the CEO of Thycotic Software, an agile software consulting and product development company [...]
Removing time from SQL datetime
We use SQL server to store data—a lot. Sometimes we need to remove the time for a DATETIME column. This is useful for analysis or grouping by day. There is no built-in function that does this, so developers often write their own. I’ve written several, some of which are much faster than others.
