> A.aspx
> 页面有个方法 function windowopen() ={ window.open('b.aspx','','');}
> 按钮调用 <input type="button" value="新增" onclick="windowopen()" />
> b.aspx
> 保存按钮事件里刷新A.aspx
> Response.Write("<script>opener.location=opener.location;</script>");
> 可以刷新,没问题!
>
> 我在A.aspx页面放了个GridView里有一模版列,放了个<a href="#" onclick="windowopen()"></a>
>  Response.Write("<script>opener.location=opener.location;</script>");
> 这样就不可以刷新!
> 为什么在模版列里弹出来的页面,用opener.location=opener.location;刷新不了父页面!