注册 登录
编程论坛 ASP技术论坛

有iframe内页面刷新时,能同时刷新这个iframe所在页面的办法吗

kira007 发布于 2008-07-22 04:52, 2478 次点击
如题:
有 文件 main.asp

<html>
............
<table><tr><td valign="top" width="870"><iframe src="Help.asp" name="contor" id="contor" scrolling="no" frameborder="0" width="100%" onload="autoResize();"  align="middle" onblur="autoResize();" ></iframe></td>
  </tr>
</table>
............
</html>

当 help.asp 执行了内容更新 刷新页面时  能同时 把 main.asp  文件一同刷新吗?
2 回复
#2
hmhz2008-07-22 08:18
放在Help.asp文件里
<input type="button" value="刷新" onclick="parent.location.reload();" />
#3
风中的枫叶2010-04-15 20:56
1