Description: If you\'ve done a lot of web site development with ASP, particularly using VBScript and generating dynamic page elements such as tables from a database query and the like, then you know full well that VBScript (and, in general, ANY interpreted scripting language) absolutely STINKS at string concatenation. In .NET, you have a much more efficient object, StringBuilder, that was specially designed for this purpose. But with VBScript, and even in a compiled VIsual Basic COM DLL, repetitive string concatenation is not only notoriously slow, it can run the CPU right off the top of the meter! Ouch! Not good, eh?