I did this in two different ways:
1) . , , javascript, :
HTML:
<asp:Button ID="Button1" runat="server" Text="" Style="background-color: Transparent;
color: inherit; border-style: none;" />
Iframe Code Behind:
ClientScript.RegisterStartupScript(Me.GetType(), "RefreshParent", "<script type='text/javascript'>var btn = window.parent.document.getElementById('Button1');if (btn) btn.click();</script>")
2) script, . JS - :
window.parent.document.forms[0].submit();