Archive for May, 2009

Learning? Me? But I’m An Expert

You’ve been a coder for a few years now, maybe even decades. You’ve got a successful job, making enough money. You know the “respectable” technologies that the recruiters look for: C++, C#, Java, whatever. There’s no need to learn anything new. Stay in your comfort zone. Take it from these guys:

Forcing The Browser To Cache Dynamic Content In ASP.NET

Usually, you don’t want the browser doing any kind of caching on dynamic content served from a generic handler (.ASHX) in ASP.NET – afterall, the content is usually changing (dynamic). Sometimes however, it’s handy to use a handler to serve content that effectively never changes. Here’s how.