1. if you are using open() to 弹出窗口页面b,  try in 页面b 
<script language="javascript">
function window.onunload()
{
   window.opener.IframeID.location.reload(true);
}
</script>assume you have in 页面a
<iframe src="test.asp" id="IframeID"></iframe>
2. if you use showModalDialog() to 弹出窗口页面b, then pass window as the second parameter in 页面a:
showModalDialog("b.html",window);and in 页面b, do:
window.dialogArguments.IframeID.location.reload(true);