各位大虾,我遇到如下问题:我用Hyperlink弹出子页面,我在子页面关闭时想刷新父页面,可是此时父页面中的isPostBack认为是false,这样父页面中的翻页功能就有问题了(本来在后页弹出子页,刷新后回到了首页)。我的子页面代码
protected void WriteJS( String content )
{
Response.Write( String.Format("<script>javascript:{0}</script>", content));
}

protected void RefreshParentThenClose()// 关闭本页面,刷新父页面
{
WriteJS( "window.opener.location.href=window.opener.location.href;window.close();" );
}
请问,在刷新父页面时,能让父页面中的isPostBack为ture吗?