Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Refresh a Frameset

Reply
Thread Tools

Refresh a Frameset

 
 
Charles A. Lackman
Guest
Posts: n/a
 
      04-22-2004
Hello,

I have a frameset nested inside another frameset:

<FRAMESET border="0" frameSpacing="0" rows="150,72%" frameBorder="No">
<FRAME name="header" marginWidth="0" marginHeight="0" src="header.htm"
frameBorder="No" noResize scrolling="no">
<FRAMESET frameSpacing="0" borderColor="white" rows="500,*"
frameBorder="yes">
<FRAME name="Result" marginWidth="0" marginHeight="0" src="SelectPage.aspx"
frameBorder="NO">
<FRAMESET border="0" frameSpacing="0" rows="50,*" frameBorder="No">
<FRAME name="footer" marginWidth="0" marginHeight="0" src="footer.htm"
frameBorder="NO">
</FRAMESET>
</FRAMESET>
</FRAMESET>

How do I refresh the Result frame. The following code works when I do not
have nested frames:

Response.Write("<SCRIPT Language = 'JavaScript'>parent.Result.location =
'Results.aspx';</SCRIPT>")

Thanks,

Chuck


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Writing to a frameset causes the frameset to resize xzzy ASP .Net 4 03-23-2006 10:31 PM
How to leave a frameset for opening a new frameset with a JavaScript Stefan Mueller Javascript 0 11-07-2005 09:44 AM
Frameset, Selected Index, Target Frameset relchatt@comcast.net ASP .Net 0 09-29-2004 09:37 PM
Changing src of a frame of a frameset within another frameset? Julius Mong Javascript 1 05-10-2004 07:35 PM
How do you make sure a frameset is loaded? I'm trying to open a frameset in a new window which shows a specific html page in a specific frame ck388 Javascript 1 09-24-2003 08:32 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57