18位身份证校验算法
身份证校验码算法
身份证校验码产生方法:
∑(ai×Wi)(mod 11)
i: 表示号码字符从由至左包括校验码在内的位置序号;
ai 表示第i位置上的号码字符值;
Wi 第i位置上的加权因子,其数值Wi=mod(power(2,(n-1)),11)
i 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
Wi 7 9 10 5 8 4 2 1 6 3 7 9 10 5 8 4 2 1
相应的校验码:
∑(ai×WI)(mod 11) 0 1 2 3 4 5 6 7 8 9 10
校验码字符值ai 1 0 X 9 8 7 6 5 4 3 2
下面是校验函数:
FUNCTION sfzjy(num)
if len(num)=15 then
cID = left(num,6)&"19"&right(num,9)
elseif len(num)=17 or len(num)=18 then
cID = left(num,17)
end if
nSum=mid(cID,1,1) * 7
nSum=nsum+mid(cID,2,1) * 9
nSum=nsum+mid(cID,3,1) * 10
nSum=nsum+mid(cID,4,1) * 5
nSum=nsum+mid(cID,5,1) * 8
nSum=nsum+mid(cID,6,1) * 4
nSum=nsum+mid(cID,7,1) * 2
nSum=nsum+mid(cID,8,1) * 1
nSum=nsum+mid(cID,9,1) * 6
nSum=nsum+mid(cID,10,1) * 3
nSum=nsum+mid(cID,11,1) * 7
nSum=nsum+mid(cID,12,1) * 9
nSum=nsum+mid(cID,13,1) * 10
nSum=nsum+mid(cID,14,1) * 5
nSum=nsum+mid(cID,15,1) * 8
nSum=nsum+mid(cID,16,1) * 4
nSum=nsum+mid(cID,17,1) * 2
'*计算校验位
check_number=12-nsum mod 11
If check_number=10 then check_number="X" elseIf check_number=12 then check_number="1" elseif check_number=11 then check_number="0" End if sfzjy=check_number
End function
其它校验:
性别与出生年月:
sfznum=身份证号码
lenx=len(sfznum)
if lenx=15 then
yy="19"&mid(xian,7,2)
mm=mid(xian,9,2)
dd=mid(xian,11,2)
aa=mid(xian,15,1) '15位身分证取第十五位,能被2整除为女性
end if
if lenx=18 then
yy=mid(xian,7,4)
mm=mid(xian,11,2)
dd=mid(xian,13,2)
aa=mid(xian,17,1) '18位身分证取第十七位,能被2整除为女性
end if
if aa mod 2=0 then
xb="女"
else
xb="男"
end if
if lenx=18 then
if mid(xian,18,1)<>cstr(sfzjy(xian)) then '如果第十八位校验码不等于计算出的校验码则身份证号码有误.
response.write "提示:身份证校验位错误!"
else
response.write "结果:身份证号码校验为合法号码!"
end if
else '如果输入的是十五位号,则计算出十八位新号
response.write "新身份证:"&left(xian,6)&"19"&right(xian,9)&cstr(sfzjy(xian))
end if
关于户籍判断则而要数据库.这里就不提供了.
身份证校验算法与ASP程序
2019-10-30 15:29asp教程网 ASP教程
身份证校验算法与ASP程序
延伸 · 阅读
- 2019-10-27Java直接插入排序算法实现
- 2019-10-27php读取30天之内的根据算法排序的代码
- 2019-10-27经典算法:基数排序的小例子
- 2019-10-26如何使用Administrators组用户运行ASP程序
- 2019-10-24php实现统计二进制中1的个数算法示例
- 2019-10-23基于PHP实现的多元线性回归模拟曲线算法
精彩推荐
- ASP教程
javascript asp教程第八课--request对象
javascript asp教程第八课--request对象...
- ASP教程
ASP中怎么实现SQL数据库备份、恢复!
ASP中怎么实现SQL数据库备份、恢复! ...
- ASP教程
适合所有网站的rss和xml聚合功能asp代码
生成rss和xml聚合主要是方便订阅,让用户快速知道您的网站的更新。 ...
- ASP教程
asp分页(自己整理的2个分页程序)
asp分页(自己整理的2个分页程序)...
- ASP教程
ASP常见的保留字整理(变量与表名注意不能用)
许多人在编写程序的时候因为贪图方便或不小心使用到程式的保留字,有时明明程序没有错,就是无法正确执行。您知道有哪些常见的保留字吗...
- ASP教程
ASP出现问题?修复ASP的批处理
ASP出现问题?修复ASP的批处理,需要的朋友可以参考下。...
- ASP教程
[推荐]ASP编程通用函数收藏大全
本帖将收集和征集最全面的ASP编程应用中通用功能函数,人人为我,我为人人:) 只要大家每人献出一两条自己收藏已久,精典的通用函数,我想本帖将会...
- ASP教程
JScript中遍历Request表单参数集合的方法
这篇文章主要介绍了JScript中遍历Request表单参数集合的方法,本文以遍历Request.QueryString集合为例给出了实现代码,需要的朋友可以参考下...