Archive for June, 2008

Configure SSL for multiple host headers in IIS using wildcard certificate

Tuesday, June 3rd, 2008

You have a web server running IIS (Internet Information Services), your web server has only one IP address, and you have been using host headers to run multiple websites of the one IP address. Now, you want to configure SSL on one or more of your websites. What to do? ...

How to cache portions of ASP.NET pages

Monday, June 2nd, 2008

This article will demonstrate a complex and real world example of how to implement ASP.NET output caching on portions of your pages. My next article will explain the more difficult task of how to programmatically clear the cache whenever you choose!

What’s the CSS equivalent for the nowrap attribute?

Sunday, June 1st, 2008

If you've been using the HTML attribute nowrap to prevent text from wrapping in table cells (for example), you can do the same via cascading style sheets (CSS).

Storing data in HTML elements using attributes

Sunday, June 1st, 2008

This article aims to illustrate 2 useful concepts. Firstly, to illustrate how to use the getAttribute and setAttribute methods of the DOM (Document Object Model) to "store" or "attach" data to DOM elements. Secondly, to show how this can be used as a way to "pass" data to Javascript event ...