看一下 这段 代码
<body><!-- #include file="../info/md5.asp" -->
<!-- #include file="../info/conn.asp" -->
<%
if request.Form("username")="" or request.Form("pwd")="" or request.Form("code")="" then
response.write "<script language=JavaScript>" & chr(13) & "alert('请确认所有信息已经填写!');" & "history.back()" & "</script>"
Response.End
Else
if request.Form("PP")="person" then
user_type=1
call codeistrue("../UserLogin.asp")
End if
if Request.Form("company")="ee" then
user_type=2
call codeistrue("../Eelogin.asp")
End if
If Request.Form("login")="index" then
verifycode=trim(request("code"))
If cstr(session("Num"))<>cstr(trim(verifycode)) then
response.Write "<script LANGUAGE='javascript'>alert('请输入正确的验证码!');history.go(-1);</script>"
response.end
Else
user_type=1
End if
End if
username=request.form("username")
pwd=md5(request.form("pwd"))
Set Yrs=Server.CreateObject("ADODB.RecordSet")
Sql="select * from login where user_name='"&username&"' and pwd='"&pwd&"' and user_type="&user_type
Yrs.Open Sql,Conn,1,3
IF Yrs.EOF or Yrs.Bof Then
Response.write "<script language=JavaScript>" & chr(13) & "alert('此用户名或密码有误!');" & "history.back()" & "</script>"
Response.End
else
conn.execute("update login set login_time=login_time+1 where user_name='"&username&"'")
session("username")=username
session("usertype")=Yrs("user_type")
session("user_id")=Yrs("user_id")
if user_type=1 then
If IsNull(session("user_id")) then
response.Write "<script language=JavaScript>alert('你的个人简历还未填写,马上填写!');window.location.href='PersonReg2.asp';</script>"
Else
Response.Redirect "Personmanger.asp"
End if
else
Response.Redirect("../Company/Companymanger.asp")
End if
Yrs.close()
set Yrs=nothing
Closeconn()
End if
End if
%>
</body>
</html>
当注册 完 时。
跳转 到 下 一页面 填写 详细 信息 时 ,就把 页面 关了
在去 登陆
为什么 他不能运行 else 下面空白处后面的代码。
[[it] 本帖最后由 zdloveday 于 2008-9-11 14:50 编辑 [/it]]