当前位置: 代码迷 >> ASP.NET >> iframe跳转页有关问题
  详细解决方案

iframe跳转页有关问题

热度:9932   发布时间:2013-02-25 00:00:00.0
iframe跳转页问题
我的框架用iframe搭的,当用户登录的时候自动转向这个iframe框架,当会话过期了之后,这个iframe自动跳转到登录页面,这个怎么实现啊,如果我用response.redirect()只会一块iframe转向登录页面,而不是整个iframe即整个页面跳转到登录页面,请帮帮忙

------解决方案--------------------------------------------------------
用Js实现
Response.Write("<script>parent.location.href='要跳的URL'</script>");
Response.End();
------解决方案--------------------------------------------------------
探讨
用Js实现
Response.Write(" <script>parent.location.href='要跳的URL' </script>");
Response.End();
  相关解决方案