asp如何验证信用卡是否可用?
时间:2010-06-10 18:39:00
如何验证信用卡是否可用,合法?
核实信用卡的真伪是一件麻烦的事儿,看看下面的代码,也许会给你帮上忙:
<Script runat=server language=vbscript>
function mod10(cardNo)
lCard=len(cardNo)
lC=right(cardNo,1)
cStat=0
for i=(lCard-1) to 1 step -1
tempChar= mid(cardNo,i,1)
d=cint(tempChar)
if lcard mod 2 = 1 then
temp=d*(1+((i+1) mod 2))
else
temp=d*(1+(i mod 2))
end if
if temp < 10 then
cStat = cStat + temp
else
cStat = cStat + temp - 9
end if
next
cStat = (10-(cStat mod 10)) mod 10
if cint(lC) = cStat then
mod10 = true
end if
end function
</script>
标签:验证,asp
0
投稿
猜你喜欢
Python协程的用法和例子详解
2022-02-15 14:01:57
Python I/O与进程的详细讲解
2022-11-27 14:07:15
vscode 配置 python3开发环境的方法
2022-09-05 22:54:34
MySQL 如何修改root用户的密码
2024-01-23 19:34:31
图文详解mysql中with...as用法
2024-01-27 20:52:43
Vue集成lodop插件实现打印功能
2023-07-02 17:01:20
python 提取视频中的音频工具类详解
2023-08-15 06:10:26
举例讲解Python中is和id的用法
2022-07-31 19:52:36
python进阶教程之异常处理
2023-10-14 23:04:17
python 装饰器的使用与要点
2023-02-05 01:04:02
sql字符串函数大全和使用方法示例
2024-01-26 22:17:48
利用python实现可视化大屏
2023-08-17 17:29:17
PHP htmlentities()函数用法讲解
2023-06-04 14:47:30
matplotlib图形整合之多个子图绘制的实例代码
2023-10-23 23:17:47
用jquery写的自动提示效果
2008-06-17 14:27:00
Z-Blog实现摘要图文混排效果的方法
2009-02-23 13:54:00
Python多模块引用由此引发的相对路径混乱问题
2021-07-11 03:57:10
vue 点击展开显示更多(点击收起部分隐藏)
2024-05-29 22:47:56
opencv-python+yolov3实现目标检测
2022-01-18 06:45:17
python对 MySQL 数据库进行增删改查的脚本
2024-01-18 07:04:24