Hi there!
I have two frames(left & right). Both are ASP pages. When certain condition is met in the right side frame page, the left side frame page should be refreshed automatically.
Please help me.
Printable View
Hi there!
I have two frames(left & right). Both are ASP pages. When certain condition is met in the right side frame page, the left side frame page should be refreshed automatically.
Please help me.
Do that with a javascript. Like:
<%
if condition then
%>
<script language="JavaScript">
parent.frames["left"].location.href = "newfile.asp"
</script>
<%
end if
%>
I think the javascript should look like that... haven't written in Javascript for a long time, so I'm not sure.