如何删除ASP网站后台登陆检查程序
有一个网站是ASP写的,因为服务器不稳定,登陆后台后2分钟就自动登出,我想把那段自检的程序删除掉。普通页面直接删除下面这段就可以了。<%ifsession("admin"...
有一个网站是ASP写的,因为服务器不稳定,登陆后台后2分钟就自动登出,我想把那段自检的程序删除掉。
普通页面直接删除下面这段就可以了。
<%if session("admin")="" then
response.Write "<script LANGUAGE='javascript'>alert('网络超时或者您还没有登录请登录');window.location.href='login.asp';</script>"
response.End
else
if session("flag")>2 then
response.Write "<p align=center><font color=red>您没有此项目管理权限!</font></p>"
response.End
end if
end if
%>
但是下面这段如果全部删除就会显示服务器出错,请教高手,下面这段应该怎样改才能正常运行?
<%if session("admin")="" then
response.Write "<script language='javascript'>alert('网络超时或您还没有登陆!');window.location.href='login.asp';</script>"
response.End
end if
dim bookid
bookid=request.QueryString("id")
if not isnumeric(bookid) then
response.write"<script>alert(""非法访问!"");location.href=""../index.asp"";</script>"
response.end
end if
%> 展开
普通页面直接删除下面这段就可以了。
<%if session("admin")="" then
response.Write "<script LANGUAGE='javascript'>alert('网络超时或者您还没有登录请登录');window.location.href='login.asp';</script>"
response.End
else
if session("flag")>2 then
response.Write "<p align=center><font color=red>您没有此项目管理权限!</font></p>"
response.End
end if
end if
%>
但是下面这段如果全部删除就会显示服务器出错,请教高手,下面这段应该怎样改才能正常运行?
<%if session("admin")="" then
response.Write "<script language='javascript'>alert('网络超时或您还没有登陆!');window.location.href='login.asp';</script>"
response.End
end if
dim bookid
bookid=request.QueryString("id")
if not isnumeric(bookid) then
response.write"<script>alert(""非法访问!"");location.href=""../index.asp"";</script>"
response.end
end if
%> 展开
3个回答
展开全部
<%
if session("flag")>2 then
response.Write "<p align=center><font color=red>您没有此项目管理权限!</font></p>"
response.End
end if
%>
if session("flag")>2 then
response.Write "<p align=center><font color=red>您没有此项目管理权限!</font></p>"
response.End
end if
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
留下:
<%
dim bookid
bookid=request.QueryString("id")
if not isnumeric(bookid) then
response.write"<script>alert(""非法访问!"");location.href=""../index.asp"";</script>"
response.end
end if
%>
<%
dim bookid
bookid=request.QueryString("id")
if not isnumeric(bookid) then
response.write"<script>alert(""非法访问!"");location.href=""../index.asp"";</script>"
response.end
end if
%>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要改登录验证那儿的代码,增加超时时间久可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询