|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
hex to decimal
just wondering if there is an easy way to convert hex to decimal with asp, the hex() function is there to get the decimal to hex, but i haven't been able to find a way to go back. anyone know? yes i've googled. not much help there.
__________________
My brain cells are like a storm trooper's armor: useless |
|
#2
|
||||
|
||||
|
found it
Code:
<%Function HexToDec(ByVal sHex)
HexToDec = "" & CLng("&H" & sHex)
End Function%>
|
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > hex to decimal |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|