Results 1 to 2 of 2
Related
-
mouseover buttons or clickable buttons to move scroll bar Forum: Javascript Forum
Replies: 0 -
Moving the detail table Forum: Myspace Forum
Replies: 2 -
How to return to previous page Forum: Javascript Forum
Replies: 0 -
Find a date string of previous months Forum: CGI Perl Forum
Replies: 1
-
10-29-2003, 01:00 PM #1
Next and Previous buttons for master/detail pages
I am using FrontPage 2000 to implement a master/detail page application. Since there will be more than one master page, I would like to put "Next" and "Previous" buttons at the bottom of the master pages. I have formatted the master pages with "Shared Borders" top and bottom. There is already a Nav bar navigating to adjacent level pages at the top border. Is this possible, and if so, could someone point me to where I could get information on how to do it?
Regards
Duane
-
10-29-2003, 01:47 PM #2
You mean like http://www.a1javascripts.com/form_navigation/forwardback/forwardback.html would get you?
or something like:
Code:<a href="previous.html">Previous</a> <a href="next.html">Next</a>
If you're using images, then directly substitute <img src="previous.gif"> for "Previous" and <img src="next.gif"> for "Next".
If you're using frames (hard to tell from your post) then you need to put "target="name_of_main_frame.html" into each <a> tag like:
Code:<a href="previous.html" target="name_of_main_frame.html">Previous</a>
Do you have a link? Or some code to show?Last edited by Android; 10-29-2003 at 01:53 PM.