日期:2014-05-20  浏览次数:20499 次

在iframe裡刷新父窗口中的控件?
在iframe裡刷新父窗口中的控件?

a.aspx
=============
<asp:GridView   ID= "GridView1 "   runat= "server ">
</asp:GridView>
<iframe     id= "frameNavigation "     frameborder= "0 "   runat   = "server "   src= "b.aspx "   style= "width:   100%;   height:   205px; "> </iframe>


怎樣在b.aspx裡怎樣刷新a.aspx裡的GridView1控件呢

GridView1.DataBind();


------解决方案--------------------
在b.aspx里通过javascript让a.aspx重新刷新。

parent.location.replace(parent.location.href);
------解决方案--------------------
同意楼上,GridView 是后台,编译到前台就是普通的Table, 页IFrame 里调用只能用JavaScript 前台操作。
------解决方案--------------------
Response.Write( " <script> top.location.href= 'Uindex.aspx '; </script> ");


Uindex是要刷新的网页名字。