I am very new to Java Scripting and I am creating a web page with frames that will display the contents of an excel worksheet in the main frame.
The code below represents the left frame. The right frame is supposed to display the corresponding worksheet only, however it opens the entire workbook.
How can I limit the main frame's display to just the corresponding worksheet?
I know that it has to do with the way the link is setup but I am not sure how to correctly modify it.
Any help is GREATLY Appreciated!!!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>State Listing</title>
<style fprolloverstyle>A:hover {text-decoration: none; color: #FFFFFF; font-style: italic; font-weight: bold}
</style>
<base target="main">
</head>
<body style="text-decoration: none">
<p> <a style="text-decoration: none" href="Allstates.htm">All States</a><br>
<a target="main" style="text-decoration: none" title="Installers in Alabama" href="file://server/vol1/group/everyone/FIELD%20Installers%202000RO.XLS#AL!A1">Alabama</a><br>
<a target="main" style="text-decoration: none" title="Installers in Alaska" href="file://server/vol1/group/everyone/FIELD%20Installers%202000RO.XLS#AK!A1">Alaska</a><br>
<a target="main" style="text-decoration: none" title="Installers in Arizona" href="file://server/vol1/group/everyone/FIELD%20Installers%202000RO.XLS#AZ!A1">Arizona</a><br>
<a target="main" style="text-decoration: none" title="Installers in Arkansas" href="file://server/vol1/group/everyone/FIELD%20Installers%202000RO.XLS#AR!A1">Arkansas</a><br>
</body>
</html>
The code below represents the left frame. The right frame is supposed to display the corresponding worksheet only, however it opens the entire workbook.
How can I limit the main frame's display to just the corresponding worksheet?
I know that it has to do with the way the link is setup but I am not sure how to correctly modify it.
Any help is GREATLY Appreciated!!!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>State Listing</title>
<style fprolloverstyle>A:hover {text-decoration: none; color: #FFFFFF; font-style: italic; font-weight: bold}
</style>
<base target="main">
</head>
<body style="text-decoration: none">
<p> <a style="text-decoration: none" href="Allstates.htm">All States</a><br>
<a target="main" style="text-decoration: none" title="Installers in Alabama" href="file://server/vol1/group/everyone/FIELD%20Installers%202000RO.XLS#AL!A1">Alabama</a><br>
<a target="main" style="text-decoration: none" title="Installers in Alaska" href="file://server/vol1/group/everyone/FIELD%20Installers%202000RO.XLS#AK!A1">Alaska</a><br>
<a target="main" style="text-decoration: none" title="Installers in Arizona" href="file://server/vol1/group/everyone/FIELD%20Installers%202000RO.XLS#AZ!A1">Arizona</a><br>
<a target="main" style="text-decoration: none" title="Installers in Arkansas" href="file://server/vol1/group/everyone/FIELD%20Installers%202000RO.XLS#AR!A1">Arkansas</a><br>
</body>
</html>