asp超时问题如何解决
Session.TimeOut=900以前用的这个代码,用iis服务器没有出错,用swsaspwebserver,超过20分钟无操作就超时!!请问大家有别的方法解决这个超...
Session.TimeOut=900
以前用的这个代码,用iis服务器没有出错,用sws aspwebserver,超过20分钟无操作就超时!!请问大家有别的方法解决这个超时问题吗?我想用sws服务器!下面是我asp代码,谁可以帮我解决!+分-----------------------------------------------------------
<%@LANGUAGE="VBSCRIPT"%>
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers="10,11"
MM_authFailedURL="denglushibai.htm"
MM_grantAccess=false
Session.TimeOut=900
If Session("MM_Username") <> "" Then
If (false Or CStr(Session("MM_UserAuthorization"))="") Or _
(InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then
MM_grantAccess = true
End If
End If
If Not MM_grantAccess Then
MM_qsChar = "?"
If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&"
MM_referrer = Request.ServerVariables("URL")
if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString()
MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer)
Response.Redirect(MM_authFailedURL)
End If
%>
<html>
<frameset cols="150,*" frameBorder=0>
<frame src="maincaidan.asp">
<frame src="mainli.asp" name="main">
</frameset>
</html> 展开
以前用的这个代码,用iis服务器没有出错,用sws aspwebserver,超过20分钟无操作就超时!!请问大家有别的方法解决这个超时问题吗?我想用sws服务器!下面是我asp代码,谁可以帮我解决!+分-----------------------------------------------------------
<%@LANGUAGE="VBSCRIPT"%>
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers="10,11"
MM_authFailedURL="denglushibai.htm"
MM_grantAccess=false
Session.TimeOut=900
If Session("MM_Username") <> "" Then
If (false Or CStr(Session("MM_UserAuthorization"))="") Or _
(InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then
MM_grantAccess = true
End If
End If
If Not MM_grantAccess Then
MM_qsChar = "?"
If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&"
MM_referrer = Request.ServerVariables("URL")
if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString()
MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer)
Response.Redirect(MM_authFailedURL)
End If
%>
<html>
<frameset cols="150,*" frameBorder=0>
<frame src="maincaidan.asp">
<frame src="mainli.asp" name="main">
</frameset>
</html> 展开
展开全部
你在代码中加入一个自动刷新代码就可以了。让客户端时刻与服务器保持连接。这样就不会过期了。
<meta http-equiv="refresh" content="300">
300处是时间。这里毫秒。
<meta http-equiv="refresh" content="300">
300处是时间。这里毫秒。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询