Quote:
Don't know how easy blocking selected off-site links would be in IIS, I might have to code an ASP/ASP.NET page to serve up the images in the photo album.

I think you could use an ISAPI filter, but in ASP.NET it should be pretty easy - you can hook into all sorts of useful parts of a request. For instance proper regex rewrites can now be done with little additional code added in.

Also doing on-the-fly thumbnails is very easy in ASP.NET - there is built-in image handling and compression code that seems to be pretty quick.

Gareth