|
-
Mar 2nd, 2001, 04:38 AM
#1
Thread Starter
Hyperactive Member
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.
-
Mar 2nd, 2001, 01:22 PM
#2
Lively Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|