two frame - how to run selected url in other fram
I have the following code that runs two frames. The first frame menu.xml runs a xls that builds my web pages menus url links. The second fame books.asp is my web page.
Is it possible for a user to select a link in the first frame, and that link is displays in the second frame. How do I do this ?
Thanks - Brendon
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css" >
<title>Big Book Shop</title>
</head>
<frameset rows="15%,85%" border="0">
<frame src="menu.xml">
<frame src="books.asp">
</frameset>
</html>
|