This is an ASP.NET version of our classic ASP Array sample.
It's similar to our classic ASP version with a few notable exceptions.
First of all, arrays in .NET are always 0-based and VB's Array function
no longer exists. The second change is that this time around I've switched
to using a StringBuilder to build the output as opposed to just Response.Writing
it onto the page.