PDA

Click to See Complete Forum and Search --> : Page Refresh from another page!


jeba
Mar 2nd, 2001, 03:38 AM
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.

CreoN
Mar 2nd, 2001, 12:22 PM
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.