Archive

Archive for August, 2009

CMS Framework – Update

August 16th, 2009 No comments

Been a bit quiet round here lately but not because I’ve not been working on it ;) I’ve been using it for a project at work and converting a lot of my stuff to be compatible with it.  It’s running  a site atm and doing well.

Alpha State

Mainly in alpha because things may yet change but the following all work
Read more…

Categories: .net, Asp.Net, c#, cms Tags:

Simple Asp.net StringBuilder Literal Control

August 13th, 2009 No comments

It always annoys me that Literal controls only have a text property. This means you have to do:

Literal.Text += "Add me";

Whereas a StringBuilder would make much more sense when building lists etc. Heres a stupidly simple control that just supplies a string builder as the text property. Not exactly a good code example(shouldn’t override the text property etc)  but ideal for this situation. I will write a proper control later ;) Read more…

Categories: Asp.Net Tags: