J
JDorn
I am trying to build a static report viewing system using HTML. The
main page is split into 3 frames: 'Hder', 'left', and 'main'
<html>
<title>Monthly Reports</title>
<FRAMESET ROWS="15%,*" FRAMEBORDER="0" FRAMESPACING="0" BORDER="0">
<FRAME NAME="HEDR" SRC="Header.html" MARGINWIDTH="3" MARGINHEIGHT="10"
SCROLLING="no">
<FRAMESET COLS="15%,*" FRAMEBORDER="0" FRAMESPACING="0" BORDER="0">
<FRAME NAME="left" SRC="blank.html" MARGINWIDTH="3" MARGINHEIGHT="10"
SCROLLING="no">
<FRAME NAME="main" SRC="ReportStart.html" MARGINWIDTH="3"
MARGINHEIGHT="10">
</FRAMESET>
</FRAMESET>
</html>
Header.html has buttons to display various reports on 'Main'. When
the report contains a large number of entries, I would like to add an
alpha list to 'left' which allows the user to easily jump to the
section on 'Main'
'Left' contains:
<html>
<body>
<A href="soo.html#A" target="main">A</A><BR>
<A href="soo.html#B" target="main">B</A><BR>
<A href="soo.html#C" target="main">C</A><BR>
<A href="soo.html#D" target="main">D</A><BR>
</body>
</html>
'Main' contains:
<html>
<A name="A">
Section A data....
</A>
<br>
<A name="B">
Section B data....
</A>
<br>
<A name="C">
Section C data....
</A>
<br>
<A name="D">
Section D data....
</A>
<br>
</html>
When I click on a link on Left, all I get in Main 'This page cannot be
displayed'
I do not have any web service running, (not even IIS that I can tell)
just trying to do this as file references to keep things simple for
the small office. Do I need to have IIS or Apache running in order
for this to work?
Thanks!
Jon
main page is split into 3 frames: 'Hder', 'left', and 'main'
<html>
<title>Monthly Reports</title>
<FRAMESET ROWS="15%,*" FRAMEBORDER="0" FRAMESPACING="0" BORDER="0">
<FRAME NAME="HEDR" SRC="Header.html" MARGINWIDTH="3" MARGINHEIGHT="10"
SCROLLING="no">
<FRAMESET COLS="15%,*" FRAMEBORDER="0" FRAMESPACING="0" BORDER="0">
<FRAME NAME="left" SRC="blank.html" MARGINWIDTH="3" MARGINHEIGHT="10"
SCROLLING="no">
<FRAME NAME="main" SRC="ReportStart.html" MARGINWIDTH="3"
MARGINHEIGHT="10">
</FRAMESET>
</FRAMESET>
</html>
Header.html has buttons to display various reports on 'Main'. When
the report contains a large number of entries, I would like to add an
alpha list to 'left' which allows the user to easily jump to the
section on 'Main'
'Left' contains:
<html>
<body>
<A href="soo.html#A" target="main">A</A><BR>
<A href="soo.html#B" target="main">B</A><BR>
<A href="soo.html#C" target="main">C</A><BR>
<A href="soo.html#D" target="main">D</A><BR>
</body>
</html>
'Main' contains:
<html>
<A name="A">
Section A data....
</A>
<br>
<A name="B">
Section B data....
</A>
<br>
<A name="C">
Section C data....
</A>
<br>
<A name="D">
Section D data....
</A>
<br>
</html>
When I click on a link on Left, all I get in Main 'This page cannot be
displayed'
I do not have any web service running, (not even IIS that I can tell)
just trying to do this as file references to keep things simple for
the small office. Do I need to have IIS or Apache running in order
for this to work?
Thanks!
Jon