• Web Dev with IE

    Everybody who has done any cross-browser web development is aware of the many quirks of IE6, so it is good to read, as Scott points out, that the IE team is addressing many of them with IE7.  While it isn't 100% yet, I've noticed that more often than not, if you get it right in Firefox, it looks right in IE7 and vice-versa.  That certainly cannot be said of IE6.

    And on that note, I'd like to draw more attention to…

    • Wed, Aug 23 2006
  • Output Caching Profiles and Custom Caching

    Here's a quick tip for something pretty neat in ASP.NET 2.0.  You can specify output cache profiles in the application configuration like so (this is under the system.web configuration section):

    <

    caching>
     
    <outputCache enableOutputCache="true" />
      <
    outputCacheSettings>
       
    <outputCacheProfiles>
          <
    add name="StandardPages" duration="300" varyByCustom="browser;cu…
    • Fri, Aug 18 2006