ASP - Primer letra en mayusculas


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function PrimerLetraMayuscula(ByVal cadena)
  2. cadena = cadena &" "
  3. PrimerLetraMayuscula = ucase(mid(cadena, 1,1)) & mid(cadena, 2, len(cadena))
  4. end function

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.