asp 页面刷新的问题

来源:百度知道 编辑:UC知道 时间:2024/05/15 23:21:52
有a,b 两个页。啊问问题提交页,b 是提交成功返回页。
我在b 页里面写<meta http-equiv="Refresh" Content="3;URL='b.htm'">但是返回a 页后却没有出现刚刚提出的问题,只有再刷新一次才显示。
我想在<meta http-equiv="Refresh" Content="3;URL='b.htm'">之间加一句刷新a页的语句,或是在a的第一行加一个刷新自己一次的语句。请都怎么写????????????

<script language=javascript>
function winclose() {
window.opener.location.reload();
window.close();
}
</script>

<input type=button name=close value="关闭" onclick=winclose()>
写在b页
点关闭按钮时,刷新父页

在b加:
<%
response.redirect"a.asp"
%>