就是跳转的页面不要显示在Frame中。利用 Response.Write()

解决方案 »

  1.   

    Response.Write("<script language='javascript'>window.parent.location.href='http://www.xxx.com'</script>")
      

  2.   

    那利用 Response.Redirect() 可以实现吗?
      

  3.   

    那利用 Response.Redirect() 可以实现吗?
    ------
    不能实现.
      

  4.   

    .NET Framework 类库 HttpResponse.Redirect 方法  C#将客户端重定向到新的 URL。
    重载列表
    将客户端重定向到新的 URL 并指定该新 URL。
    [C#] public void Redirect(string);
    将客户端重定向到新的 URL。指定新的 URL 并指定当前页的执行是否应终止。
    [C#] public void Redirect(string, bool);
    示例
    [C#] 
    Response.Redirect("http://www.microsoft.com/gohere/look.htm");