This topic is locked

Hide ToolBar & Back arrow

7/4/2007 9:59:35 AM
ASPRunnerPro General questions
D
dcrera author

Hi,
I want to hide the toolbar similar to pressing F11 and also to HIDE the Back arrow on the toolbar.
Any ideas ?
Thanks

D
dcrera author 7/4/2007

Hi,
I found this code on the net that 'redirects' you to the same page when you press the Back button. I added this code the the first page and it works.
<script language="JavaScript">

<!--

java script:window.history.forward(1);

//-->

</script>
Any comment ?

Hi,

I want to hide the toolbar similar to pressing F11 and also to HIDE the Back arrow on the toolbar.
Any ideas ?
Thanks

Sergey Kornilov admin 7/4/2007

You can only hide the toolbar if you open a popup window via Javascript.
Hiding Back button is a very bad idea. Think of your users.

D
dcrera author 7/9/2007

Hi,
I have an update form that is controlled from a menu. If the user launches the update page and confirms the update, I will return him to the menu page.
On the menu he is prevented from selecting that option again, but pressing the Back button will take him there.
How can I check if he got there from a menu option and not from the Back button ? I want an 'expired page'.
Thanks

You can only hide the toolbar if you open a popup window via Javascript.

Hiding Back button is a very bad idea. Think of your users.