% If Session("User_Account")="" Then Call AlertUrl("请先登陆!","Index.asp") Response.End End if %> <% if Request("action")="check" Then set rs=Server.CreateObject("ADODB.recordset") sql="select * from User_Info where User_Account='"&Session("User_Account")&"' and SID='"&Request.Form("sid")&"' " rs.open sql,conn,1,1 if rs.BOF=rs.EOF Then Call AlertUrl("证件号码不正确!","PasswdReSetStep2.asp") rs.close set rs=nothing conn.close set conn=nothing Else Response.Redirect "PasswdReSetStep2.asp" End if End if %>