如何从Frame框架中跳出 显示页面

解决方案 »

  1.   

    <a href="" target="_parent">
      

  2.   

    归根结底就是设置target的不同值,自己去试试
      

  3.   

    My solution will work,try it!
    <HEAD>
    <title>default</title>
    <meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
    <meta content="C#" name="CODE_LANGUAGE">
    <meta content="JavaScript" name="vs_defaultClientScript">
    <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema"><script language="JavaScript">
      // this page should never load inside of another frame
          if (top.location != self.location)
          {
             top.location = self.location;
          }
    </script>
    </HEAD>
      

  4.   

    用response.redirect好象是不可能了,只能用javascript的window.location来跳转。