The following code is to add the font tag to every character, but it don't work
Function AddFontTag (counter)
Do While Len (counter) < 7
newStr = newStr & "<font>" & Left (counter, i) & "</font>"
i = i + 1
Loop
AddFontTag = newStr
End Function
Because i'm not skilled in classic asp, such as variable scope, syntax. Does anyone know what's the problems of the above code?
thanks