ASP - Funcion Numerico


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



Copy this code and paste it in your HTML
  1. function numerico(ByVal numero)
  2. dim codigo
  3. if isnumeric(numero) Then
  4. codigo = clng(0&abs(numero))
  5. Else
  6. codigo = 0
  7. End If
  8. numerico = codigo
  9. end function

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.