<% if not isempty(request("errnum")) then
errnum=cint(request("errnum"))
if errnum=1 then
response.write("修改密码未成功! 两次新密码输入不一致!")
end if
if errnum=2 then
response.write("修改密码未成功! 旧密码输入错误!")
end if
if errnum=3 then
response.write("密码修改成功!")
end if
end if%>
|