Here's a version of our Min / Max script implemented in ASP.NET.
The actual finding of the minimum and maximum is a lot simpler then the classic ASP
version thanks to .NET's built array sorting. That said I spend more time setting
up the array because .NET is more picky about type conversion from strings to integers
then classic ASP.
Anyway, give the code a look. It's not that complex, but it's a good sample of
working with arrays and if you need to find a max or min then this is the sample for you.