This example takes the rollover navigation example (Week 4, Assignment 4) and turns it into framed navigation. I have integrated the counter (week 5, assignment 3) into this example.
Source Code:
<!-- MODULE NAME: /javascript/week5/frame1.cfm PURPOSE: Assignment 1, week 5. This is the frame page. REFERRING MODULE(S): whiteboard_iframe.cfm DESTINATION MODULE(S): QUERYSTRING METHODS SUPPORTED: AUTHOR: Grant Szabo (grant@quagmire.com) Sterling Creek Software CREATED: 12/24/02 LAST MODIFIED: 12/24/02 --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <frameset rows="80,*" frameborder="YES" border="0" framespacing="0"> <frame src="http://www.quagmire.com:80/javascript/week5/nav1.cfm" name="navFrame" scrolling="NO" noresize > <frame src="http://www.quagmire.com:80/javascript/week5/home.cfm" name="mainFrame"> </frameset> <noframes><body> </body></noframes> </html>