我需要重定向用户,我正在使用此JS代码
response.Write("<SCRIPT LANGUAGE=""JavaScript"">alert(""You do not have permissions to access this page.""); location.href = 'Session("CurrentPage")' </SCRIPT>")
我在我访问的每个页面上设置会话,理论上这应该重定向到我上次访问的页面,有关如何使其工作的任何建议?
答案 0 :(得分:2)
会话是服务器端,所以你需要这样做:
response.Write("<SCRIPT LANGUAGE=""JavaScript"">alert(""You do not have permissions to access this page.""); location.href = '" & Session("CurrentPage") & "' </SCRIPT>")