Thursday, April 26, 2007

Using the EXCEPT operator, new in SQL Server 2005

The linked article shows how you can use the new EXCEPT operator in SQL Server 2005 using an example. Click here to learn more...

Tuesday, April 17, 2007

Email messages with embedded images in ASP.NET 2.0

Creating email messages with embedded images in ASP.NET 2.0. Read more here...

Thursday, April 05, 2007

CSS 101: Locate and style Web elements with selectors

This is second of the 101 series of article presented by Tony Patton on CSS. This goes about discussing Locating and styling Web elements with selectors. Click to learn more...

CSS 101: Handling multiple rules for the same element

This is first of the 101 series of article presented by Tony Patton on CSS. The first top goes about discussing Handling multiple rules for the same element. Click to learn more...

Wednesday, April 04, 2007

Common Table Expressions in SQL Server 2005

Common Table Expressions, or CTE, are a new construct introduced in Microsoft SQL Server 2005 that offer a more readable form of the derived table that can be declared once and referenced multiple times in a query. Read more...