Category web-development - Tim Stanley

Multi Post User Control

Mar 11, 2009

Trailing on the lead from Chris Blankenship and his singlepost user control, I created a multi-post user control.  I’ve never been quite satisfied with the results of the recent posts control and Chris’s control filled in enough gaps for me to pursue this further. More...

2008 Theme Pack

Feb 26, 2009

The BlogEngine.Net 2008 theme pack was released at the end of last year with 13 new themes. More...

IE 6 Support Discontinued

Feb 24, 2009

As of February 2009, I am discontinuing mainline support for new or updated sites for IE 6 and older IE versions.  There are enough known and documented issues in how IE 6 treats CSS that make it cost prohibitive to keep IE 6 as part of the mainstream browsers for customers while also supporting newer browsers and their features. More...

How To Restart ASP.Net Applications

Feb 23, 2009

Many times, from an administration perspective, it's desirable to restart an ASP.NET web site without restarting IIS on the whole server. More...

BlogEngine.Net Expanding Categories And Tags

Oct 06, 2008

BlogEngine.Net provides the ability to selectively disclose information in the blog postings based on the configuration settings.  I took Dave Burke's concept on the Flexible Post Excerpt Display and expanded it to include expansion of all categories and tags even if the ShowDescriptionInPost setting was set to true. More...

Common HTML Markup

Oct 04, 2008

Everyone that writes content on the web should know a little HTML.  This is my cheat sheet for the most common used HTML elements I've seen that are supported in multiple browsers, tools, and CMS software. More...

Using Cache And Compression For Performance

Sep 24, 2008

Most browsers and servers have default values that provide fairly good performance with a minimum caching of static file content.  A little bit of coaxing can result in better performance with less traffic and less bandwidth.

There are two types of caching I discuss: static content  (*.JPG, *.JPEG, *.png, *.gif, *.ico) rarely updated and semi-static content (*.js, *.css) updated very infrequently.  The decision to cache page output (*.aspx, *.html, *.htm) long term is too dependent on application functionality decisions to discuss generically. More...