how do i create a previously opened web page arrow

G

Gypsey

I am currently using MS2007 and desperately need help with the following:

Previous and Next arrows - when clicked i need them to go to the last page i
clicked on and the next page in my web site (i have approx 90 pages to
navigate through).

I have the arrows on each page in the publisher document, but can't seem to
get it working correctly.

Any suggestions will be truly appreciated..
 
D

DavidF

What specifically is not working? Assuming that there is only one path to
each page then you can simply insert a link to those pages whether they be
back or forward.

If there is more than one path to a page, you can use a variety of code
snippets to go back to the previous page. Here are some examples that you
might adapt, using the insert html code fragment feature:

Back With a Button:

<FORM>
<INPUT TYPE="Button" VALUE="Previous Page" onClick="history.go(-1)">
</FORM>

With a Text Link:

<a href="javascript:history.back(1)">Previous Page</a>

Alternative:

<form>
<input type="button" value="Back to Previous Page"
onClick="javascript: history.go(-1)">
</form>

DavidF
 
G

Gypsey

Hi David,

I have come to the conculusion that we need to change your handle to "the
Master". :) Thank you, the code you supplied was exactly what I needed.

I am forever in your debt.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top