目的:点击链接后跳转到other.aspx页面并使other.aspx页面隐藏工具栏、地址栏等,下面的方法是链接一个中间页面Temp.aspx,在中间页面Temp.aspx加载之后打开新页面other.aspx,然后关闭中间页面Temp.aspx,
有没有什么好的办法直接设置链接的页面,不需要中间页面的?Response.Write("<script language='javascript'>window.open('other.aspx','_blank','resizable=yes,toolbar=no,menubar=no,scrollbars=yes,location=yes,status=yes,titlebar=no');window.close();</script>");