一、我用如下方法在A页面上打开B页面
protected void Button1_Click(object sender, EventArgs e)
{
        Response.Write("<script>open('B.aspx','B','status=yes,top=100,left=200,width=500,height=400');B.focus();</script>");
}
但当我把B页面关闭后,再次点击按钮还能打开B页面,OK!
二、在点击树treeview控件节点时,我用如下方法在A页面上打开B页面(代码一模一样)
protected void TreeView1_SelectedNodeChanged(object sender, EventArgs e)
{
     Response.Write("<script>open('A.aspx','A','status=yes,top=100,left=200,width=500,height=400');A.focus();</script>");
}
但当我把B页面关闭后,再次点击节点就再也打不开B页面了,这是为什么,难道只能打开一次吗?