📄 captcha_image.asp
字号:
'**
'****************************************************************************************
'*************************** SOFTWARE AND CODE MODIFICATIONS ****************************
'**
'** MODIFICATION OF THE FREE EDITIONS OF THIS SOFTWARE IS A VIOLATION OF THE LICENSE
'** AGREEMENT AND IS STRICTLY PROHIBITED
'**
'** If you wish to modify any part of this software a license must be purchased
'**
'****************************************************************************************
'Function to send convert hex to binary output for browser
Private Function displayImage(strHexImage)
'Dimension variables
Dim sarryHex 'Holds each hex value in the image
Dim lngHexArrayPosition 'Holds the array position
'Place the Hex image into an array
sarryHex = split(strHexImage, " ")
'Loop through the array to convert to binary
For lngHexArrayPosition = 0 to CLng(UBound(sarryHex))
'Write the binary output
Response.BinaryWrite ChrB(CLng("&H" & sarryHex(lngHexArrayPosition)))
Next
End Function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -