Re: Frames hell [Resolved]
No problem ms. squirrel. I'm just glad I could help.
And if you could get back to me with that link that would be great.
Re: Frames hell [Resolved]
Sorry Token...couldn't find the article I was originally looking for, but this morning when faced with a problem similar to yours, I found some helpful code in this article.
For my purposes, I have a treeview in the left frame that needs to be refreshed so I've used this code:
VB Code:
<script language =vbscript>
Sub RefreshTree()
parent.frames("contents").location.href = "treeview.aspx"
parent.frames("main").location.href = "annualreview.aspx"
End Sub
</script>
Then I have this control that calls the script code:
VB Code:
<asp:HyperLink id="lnkContinue" runat="server" NavigateUrl="javascript:RefreshTree()">Continue</asp:HyperLink></P>
Hope this helps! :wave:
Re: Frames hell [Resolved]
I also found this page full of frame FAQs which was really useful.