asp登录后跳转到之前的那个网页,怎么写?谢谢
比如说,现在在购物车,点结算。由于没有登录,需要跳转到登陆页面,当登录完成时,如何跳转到购物车那个页面?...
比如说,现在 在购物车,点结算。由于没有登录,需要跳转到登陆页面,当登录完成时,如何跳转到购物车那个页面?
展开
2个回答
2015-06-09
展开全部
login_check.asp:
<%
if 登录成功 then
response.redirect "a.asp"
end if
%>
如果你是通过弹窗之类的,也可以直接在这里写入JS
<%
if 登录成功 then
response.write "<script>document.location.href='a.asp'</script>" 这个是直接跳转
或者
response.write "<script>gotosth()</script>" 这个是调用跳转的模块
end if
%>
<%
if 登录成功 then
response.redirect "a.asp"
end if
%>
如果你是通过弹窗之类的,也可以直接在这里写入JS
<%
if 登录成功 then
response.write "<script>document.location.href='a.asp'</script>" 这个是直接跳转
或者
response.write "<script>gotosth()</script>" 这个是调用跳转的模块
end if
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询