[thelist] how about one more?
Scott Dexter
sgd at ti3.com
Fri Apr 7 18:13:00 2000
cause I'm feeling extra giving today,
<tip type="Making names behave in ASP" author="small gateway driver">
Ever get a database of names that have ALL CAPS or all lowercase or both?
Want to make them behave when you display them?
function propname(byval intext)
' takes intext and makes it have an initial cap, the rest lowercase
propname = UCase(Left(intext,1)) & LCase(Right(intext, Len(intext)-1))
end function
</tip>
sgd
--
think safely