Published in: ASP
function numerico(ByVal numero) dim codigo if isnumeric(numero) Then codigo = clng(0&abs(numero)) Else codigo = 0 End If numerico = codigo end function
You need to login to post a comment.
ASP.NET 3.5 Unleashed
ASP.NET 3.5 Unleashed is the most comprehensive book available on the Microsoft ASP.NET 3.5 Framework, covering all aspects of the ASP.NET 3.5 Framework--no matter how advanced.
nicolaspar on 12/19/06
Published in: ASP
function numerico(ByVal numero) dim codigo if isnumeric(numero) Then codigo = clng(0&abs(numero)) Else codigo = 0 End If numerico = codigo end function
You need to login to post a comment.