采用javascript 的window.open()
在打开A页面是不显示地址栏
然后从A页面到B页面时,再使用window.open() 显示地址栏

解决方案 »

  1.   

    showOpen = "<script language=JavaScript>" _
                        & "window.open('002.aspx','002','scrollbars=yes," _
                        & "status=yes,toolbar=yes,menubar=yes,resizable=yes,location=no," _
                        & "width='+(screen.availWidth-10)+',height='+(screen.availHeight-120)+'," _
                        & "top=0,left=0');window.opener=null;window.close();</script>"                If (Not IsClientScriptBlockRegistered("clientScript")) Then
                        RegisterClientScriptBlock("clientScript", showOpen)
                    End If
      

  2.   

    或者用JavaScript不停的更改地址栏为某一值,但这两种方法在对方关闭脚本时都不能生效
      

  3.   

    我的超链是通过Hyperlink的属性来实现的,有没用办法在页面的pageload中加代码来控制呢?
      

  4.   

    好像没办法在当前打开的页面中修改IE的工具栏,只能在新打开一个IE窗口时控制。