CMS1.2"密码最小长度"生效
作者:cmscn 日期:2005-09-25
register.asp文件中找到
if symbol_ok(password)=false then
found_err=found_err&"+您输入的 <font class=red>登陆密码</font> 为空或不符合相关规则!<br>"
else
if password<>password2 then
found_err=found_err&"+您输入的 <font class=red>登陆密码</font> 和 <font class=red>确认密码</font> 不一致!<br>"
end if
end if
其下加上下面三行代码即可
if len(password)<int(dim_num(23)) then
found_err=found_err&"+您输入的 <font class=red>登陆密码</font> 长度小于"&dim_num(23)&"!<br>"
end if
密码长度在后台设置。
评论: 7 | 引用: 0 | 查看次数: 828
发表评论