在ASP里出现的小问题。
我在想在ASP里最提示功能,在网上查到是response.write"<script>alert('对不起,你还未登录');</script>"
我在代码里是这么写的
if Request.Cookies("LoginInfo")<>"" then
if not rs.Eof then
Response.Redirect("collection.asp")
else
sql="insert into t_collection(p_code,u_code,c_time) values('" & id & "','" & cid & "',now)"
datasource.ExecuteCommand(sql)
set datasource = nothing
Response.Redirect("collection.asp")
end if
else
Response.Write"<script>alert('对不起,你还未登录');</script>"
Response.Redirect("index.asp")
end if
可是它运行到红色 的地方就自动跳转到index.asp 页面了。不出现提示框啊 。
[ 本帖最后由 liangfengfen 于 2010-8-23 21:49 编辑 ]