Re: disable back button

2002-05-03 Thread Peter Claesson (EUS)
EMAIL PROTECTED]] Sent: Friday, May 03, 2002 6:11 PM To: [EMAIL PROTECTED] Subject: Re: disable back button Adding to the original question, How do those pop-up windows open a new browser instance which does not contain any toolbars?. Thanks Luis --- Margaret Fisk <[EMAIL PROTECTED]> w

Re: disable back button

2002-05-03 Thread LUIS BARRERA
n or launch. In that case the back > button is disabled > because nothing came before. > > Another way it to set up an automatic redirect so > that when a user clicks > back, they get pushed forward again automatically. > They can still get out by > clicking back twice rapi

Re: disable back button

2002-05-03 Thread David Hyne
Meta tag with cache expires in history, with no-cache. -Original Message- From: Eric Cho [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 1:39 PM To: [EMAIL PROTECTED] Subject: disable back button Hey all, Is there any way via jsp or any

Re: disable back button

2002-05-03 Thread Margaret Fisk
The best way I know of is to launch your application in another browser window after login or launch. In that case the back button is disabled because nothing came before. Another way it to set up an automatic redirect so that when a user clicks back, they get pushed forward again automatically

disable back button

2002-05-03 Thread Eric Cho
Hey all, Is there any way via jsp or any other method you can think of to disable the back button on the browsers?!?! Thanks, Eric ** The contents of this email and any attachments are

Re: disabling the back button

2001-06-01 Thread Karau, Joe
There is no way to guarantee that the user can not somehow use the back button. Joseph Karau Kingland Systems [EMAIL PROTECTED] 507-536-3629 AIM: jkara3629 -Original Message- From: King Maurice [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 4:07 PM To: [EMAIL PROTECTED] Subject

disabling the back button

2001-05-15 Thread King Maurice
Off the subject I am creating a program which one of the features it does not all you to hit the back button. Does someone have a java code for that, if not due to limitation to browser does any have the code for javascript Maurice~ - Original Message - From: "sufi malak&quo

Re: Back Button problem of Browser

2001-04-03 Thread Nasser Dassi
-side event, not server-side. Thus, javascript as opposed to jsp. nasser - Original Message - From: "asitha ranjan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 03, 2001 1:08 AM Subject: Back Button problem of Browser Hi, Is there any way by wh

Re: Back Button problem of Browser

2001-04-02 Thread Fei Li
override keypressed() event. -Original Message- From: asitha ranjan [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 10:08 PM To: [EMAIL PROTECTED] Subject: Back Button problem of Browser Hi, Is there any way by which i can restrict the user pressing back button.. bye, Asitha

Back Button problem of Browser

2001-04-02 Thread asitha ranjan
Hi, Is there any way by which i can restrict the user pressing back button.. bye, Asitha. __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/?.refer=text

Re: Back button

2001-03-27 Thread Amol Athavale
cation and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: Amol Athavale/LTITLPUN) Subject: Re: Back button hello, this thing can be tried for disabling back button. the url where the back button has to disabled should be called using this functionality. &

Re: Back button

2001-03-27 Thread piyush jain
hello, this thing can be tried for disabling back button. the url where the back button has to disabled should be called using this functionality. <!-- function somefunction(){ window.open('theurl'); } --> abc i have tried it in ie and it work.. regards, piyush. --

Re: Back button

2001-03-27 Thread Amol Athavale
Hi, Unfortunately, there is nothing which can stop the user from pressing back button and again submitting the page, but you can have some means by which you can monitor on the page that it is not getting visited using back/forward button, i.e. refrainig the browser from caching the page. One

Re: Back button

2001-03-27 Thread Ashish Aneja
one thing that can be done is that by writing a small javascript code , you can capture the browser's back button and write a javascript to take the user to anew jsp page once the back button is clicked.this can be done by submitting a new form or by using jsp:sendRedirect. give your feedba

Re: Back button

2001-03-27 Thread Erwin
the status page or your homepage, depending on, say, Referrer?? This way, when the user presses back button from the status page, he goes to JSP Page 3, which sends him a refresh tag which redirects to the homepage (or any other page) If you want to, you can put all this "Page 3" code

Re: Back button

2001-03-26 Thread Swaminathan Gopal
Can you please forward us the piece of code which you used for directing it to a new window and close the old window. > -Original Message- > From: Bansal Siddharth [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, March 27, 2001 2:42 AM > To: [EMAIL PROTECTED] > Subject:

Re: Back button

2001-03-26 Thread Nasser Dassi
al Message - From: "Mihir Sahu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 26, 2001 2:42 PM Subject: Back button Hi, I have a jsp status page, which is displayed by the call from a servlet(this in turn was called by another jsp). I do not want the ba

Re: Back button

2001-03-26 Thread Bansal Siddharth
I don't think you can modify the back button on the browser. I had a similar problem and what I did is to direct the page to a new window and close the old window and it appears no change. So the new window will not have any back button at all. I hope this will help you, it helped me

Back button

2001-03-26 Thread Mihir Sahu
Hi, I have a jsp status page, which is displayed by the call from a servlet(this in turn was called by another jsp). I do not want the back button on the browser to take me to the jsp which had called by the servlet, but to some other page(homepage etc.). Is there any method to do it

Re: Disabling back button on the browser

2001-03-26 Thread Geert Van Damme
And besides that, I don't think there's a safe way to disable the back button anyway. In web development, if you rely on client side stuff, there's never a safe way to do anything. - disabling back button - form field validation - client side redirects - javascript in general, - ap

Re: Disabling back button on the browser

2001-03-26 Thread Marty McKeever
Swaminathan Gopal <[EMAIL PROTECTED]> >Date: Sunday, March 25, 2001 7:49 pm >Subject: Disabling back button on the browser > > > Hi, > > > > Can anyone of you please tell me how can we disable the back > > butto

Re: Disabling back button on the browser

2001-03-25 Thread Swaminathan Gopal
01 8:57 AM > To: [EMAIL PROTECTED] > Subject: Re: Disabling back button on the browser > > Have you checked the archive. This has to be one of the most f.a.q. > > http://archives.java.sun.com/archives/jsp-interest.html > > > - Original Message - > Fro

Re: Disabling back button on the browser

2001-03-25 Thread T.A. Flores
Have you checked the archive. This has to be one of the most f.a.q. http://archives.java.sun.com/archives/jsp-interest.html - Original Message - From: Swaminathan Gopal <[EMAIL PROTECTED]> Date: Sunday, March 25, 2001 7:49 pm Subject: Disabling back button on the browser

Disabling back button on the browser

2001-03-25 Thread Swaminathan Gopal
Hi, Can anyone of you please tell me how can we disable the back button on the browser using JavaScript. Regards, Swami. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For dige

Re: Back Button

2001-03-05 Thread M. Simms
erence > [mailto:[EMAIL PROTECTED]]On Behalf Of Merrill George > Sent: Friday, March 02, 2001 11:31 PM > To: [EMAIL PROTECTED] > Subject: Back Button > > > Hi all, > I have developed a jsp page which on submit calls itself > recursively. > That is the jsp is test.js

Back Button

2001-03-02 Thread Merrill George
s i've got different tags. For example when i Press a 'Save' Button I get a number from a database and i show it in the alert as 'Record 1000blah Created' suppose i go from this page and press the back button the page appears with the alert. with the same message which is aw

how to force a jsp page refresh when the browser back button back to it?

2000-11-03 Thread hua ge
I need to programmly refresh a jsp page when the browser back button back to this jsp page. how to do it? I mean how to detect that the browser back button is clicked and then force the jsp page refresh? thanks helen

Re: help:session variable could not retain old data if back button clicked

2000-11-03 Thread V.A. Kozhevnykov
sure if here You press back button it will point You to search.jsp and any further actions will be correct like forward back and see details. if it is not like this please send how it is to clarify situation. > PROBLEMS: > 1. if I click the browser back button to > previous result pag

help:session variable could not retain old data if back button clicked

2000-11-02 Thread hua ge
in a new search" bring user back to the searchForm.jsp. the above steps are all works fine if I do one search after another. PROBLEMS: 1. if I click the browser back button to previous result page, it looks like the previous results still showing there, but since the session variable alrea

Re: trouble with the back button if I use session variable

2000-11-01 Thread M. Simms
Just disable the Back button via Javascript: if (window.history.length > 0) history.forward(); > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of hua ge > Sent: Wednesday, November 01

trouble with the back button if I use session variable

2000-11-01 Thread hua ge
f I go back with the browser back button to find the previous search result, I noticed that the previous results page showing the same as the new search results. I realized that the reason is everytime the servlet is invoked, it going to store the new results in the session object geCollection . on

Cleared data on clicking Back button

2000-09-16 Thread Raj S
Hi, How can I ensure that when I press the Browser's back button,the data in the textfields is cleared out in the JSP? Thanks, Raj _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Back Button

2000-09-06 Thread Claybrook, Cecelia
I there some way to disable the back button using JSP? Cecelia Claybrook Software Engineer, EAI 913-307-7464 === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JS

Re: Back Button of Browser

2000-06-28 Thread Shane Duan
immediately notify Shane Duan by telephone at (713) 283-6400. -Original Message- From: Shashwati Panigrahi [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 28, 2000 2:46 AM To: [EMAIL PROTECTED] Subject:Back Button of Browser Hi All, I have a button on a page which I want

Re: Back Button of Browser

2000-06-28 Thread amit
Hi Shashwati, You may try out this folowing javaScript:(It Tested By Me) Testing back Button <%@ page language="java" %> function goBack() { window.location.href=history.go(-1); return true; } With Regards, -Amit.

Re: Back Button of Browser

2000-06-28 Thread Visweshwar Ghanakota
> -Original Message- > From: Shashwati Panigrahi [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, June 28, 2000 1:16 PM > To: [EMAIL PROTECTED] > Subject: Back Button of Browser > > Hi All, > I have a button on a page which I want to have the funct

Re: Back Button of Browser

2000-06-28 Thread Aggarwal, Pawan
Or window.history.go(-1) > -Original Message- > From: Andrea Vicentini > Sent: Wednesday, June 28, 2000 1:23 PM > To: [EMAIL PROTECTED] > Subject: Re: Back Button of Browser > > > > or something like this... > > > > > > > Shashwat

Re: Back Button of Browser

2000-06-28 Thread Andrea Vicentini
or something like this... Shashwati Panigrahi <[EMAIL PROTECTED]> on 28.06.2000 09:46:15 Please respond to "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: Andrea Vicentini/DV/BRAIN) Subject: Back Button of Browser Hi All,

Back Button of Browser

2000-06-28 Thread Shashwati Panigrahi
Hi All, I have a button on a page which I want to have the functionality like the Back button on the Browsers Does anyone have the code to be written on the click of this button which will take it to the previous page ? Thanks in Advance, Shashwati

Re: Disable back button

2000-06-02 Thread alok
Hi Mayuresh, But what was specifically asked was how to disable back button of the browser and not how to return to the previous document using the history object.That feature is not available you can check out the DOMs. Alok. Mayuresh S Kadu wrote: > yep ... they do. Atleast in Javascr

Re: Disable back button

2000-06-02 Thread Yuthasak Buasuwan
Hi all, >As I recall this issue has been discussed several times on this forum, with >general agreement that it's impossible. But you can trace this back in the >archives. > I am new here. yes, you can't disable Back button. but you can use javascript in Form::unload()

Re: Disable back button

2000-06-02 Thread Mayuresh S Kadu
yep ... they do. Atleast in Javascript. document.history.go(-1); > Presently Netscape and Microsoft DOMs do not offer the facility to access > back button .It is expected to be implemented in future ve

Re: Disable back button

2000-06-01 Thread alok
Presently Netscape and Microsoft DOMs do not offer the facility to access back button .It is expected to be implemented in future versions. Atul Purushan wrote: > Hi all, > is there any way of disabling the back button of the browser using any > facility in javascript,jsp or ser

Re: Disable back button

2000-06-01 Thread Piotr Wierzbicki
EMAIL PROTECTED]]On Behalf Of Atul Purushan Sent: Thursday, June 01, 2000 4:32 To: [EMAIL PROTECTED] Subject: Disable back button Hi all, is there any way of disabling the back button of the browser using any facility in javascript,jsp or servlets and thereby preventing the user from going back t

Disable back button

2000-06-01 Thread Atul Purushan
Hi all, is there any way of disabling the back button of the browser using any facility in javascript,jsp or servlets and thereby preventing the user from going back to the previous web page. thanx in advance. with regards, atul

Re: Browser BACK button

2000-05-19 Thread Sajan Thomas
] Subject: Browser BACK button Hello Everybody Is there any way by which we can disable the browsers BACK button using JSP or JavaScripts? Also, Is there any way to selectively clear a segment of the History information in the browser? ie, i want to clear the history contents of a particular website

Re: Browser BACK button

2000-05-19 Thread Imran Baig
Pages specification and reference <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: Imran Baig/CresSoft) Subject: Browser BACK button Hello Everybody Is there any way by which we can disable the browsers BACK button using JSP or JavaScripts? Also, Is there any way to selecti

Browser BACK button

2000-05-19 Thread K Ramesh
Hello Everybody Is there any way by which we can disable the browsers BACK button using JSP or JavaScripts? Also, Is there any way to selectively clear a segment of the History information in the browser? ie, i want to clear the history contents of a particular website that the user has browsed

Re: Uregent help req how to disable the back button in the browser

2000-05-08 Thread Kevin Guan
If you load the page with the following javascript, the back button will be disabled:

Uregent help req how to disable the back button in the browser

2000-05-05 Thread srinivasa rao yeramati
HI Can any one help me How can I disable the back button in the browser in netscape and ie. thanks srini Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

how to capture navigator back button click event

2000-05-03 Thread bramha
can anyone tell me how can i capture navigator back button click event ? Thanx in advance bramha === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servl

Re: Back button shows in IE but Not in Netscape???

2000-04-27 Thread Eduardo Mendes
It´s an HTML error! You have to define the FORM tag, and put the button inside it. - Original Message - From: Gary Osborn <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 27, 2000 1:52 PM Subject: Back button shows in IE but Not in Netscape??? > The fo

Re: Back button shows in IE but Not in Netscape???

2000-04-27 Thread Marcelo Bellezo
Hi Gary, buttons in Netscape are necessary to be between tags. Gary Osborn wrote: > The following test to see if there is anything to > report and if not displays a back button and text. > The button shows up fine in IE but not in Netscape 4.0 > and I can't figure out why

Re: Back button shows in IE but Not in Netscape???

2000-04-27 Thread Ian Graham
] Subject: Back button shows in IE but Not in Netscape??? The following test to see if there is anything to report and if not displays a back button and text. The button shows up fine in IE but not in Netscape 4.0 and I can't figure out why. <% if (usageReport.getNumberOfRow

Back button shows in IE but Not in Netscape???

2000-04-27 Thread Gary Osborn
The following test to see if there is anything to report and if not displays a back button and text. The button shows up fine in IE but not in Netscape 4.0 and I can't figure out why. <% if (usageReport.getNumberOfRows() == 0) { out.println("");

Browser back button question.

2000-04-27 Thread Dinesh Venkatraman
Hi all, Can anybody tell me, how can we capture the browser back button event? thanks in advance, gvd. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JS

OT (was: Re: Browser back button)

2000-04-04 Thread Cimpoesu Teodor
Hi Divya! On Mon, 03 Apr 2000, Divya M A wrote: > Hello! > Is it possible to disable the browser back button( using Javascript, > etc.)? Or atleat force execution of a user's function on click of browser > back button? The problem is that I have a file on submit of which,

Re: Browser back button

2000-04-03 Thread Alex Cachia
If you are using Model 2 ( ie. the browser is always posting to the front component ). What exactly is the browser caching? I was under the impression that if one used Model 2, lets say Main.jsp, each new page would be served by this JSP, hence the browser would not know that the user had left t

Re: Browser back button

2000-04-03 Thread Vaishali Joshi
HI Divya you can use location.replace() to replace the current entry in the history of browser with the filename you want. Let me know if you need more information on this. Vaishali __ Get Your Private, Free Email at http://www.hotmail.com

Re: Browser back button

2000-04-03 Thread Shriver, Ryan
> Hello! > Is it possible to disable the browser back button( using > Javascript,etc.)? No, you can't disable the back button. There is a read-only Javascript attribute for getting access to the button, but you cannot disable it. > Or atleat force execution of a user'

Browser back button

2000-04-03 Thread Divya M A
Hello! Is it possible to disable the browser back button( using Javascript, etc.)? Or atleat force execution of a user's function on click of browser back button? The problem is that I have a file on submit of which, I get a second file. But I don't want the user to resubmit the

Re: Browser's back button

2000-03-16 Thread Rathinavel P
If you are loading different page after the operation (branch or node delete whatever) ,you could say document.location.replace("anotherpage.jsp/html") which will remove the previous URL from the browser history and hence your browser 'back' button won't load the page ag

Browser's back button

2000-03-16 Thread Wytas
Hi, I'm having one problem. I made a JSP that displays some kind of tree control of a structure in database. When I browse it and delete some branch or node I can press back browser's back button some times and then try to access deleted node or perform some other operation. I get e

Re: Handling The Browser Back Button, et al (tms)

1999-08-18 Thread Dmitri Namiot
just redirect your page after user hit submit. In that case pressing 'Back' just return to redirected page. I think it is a standard techniques. ColdJava: java server side programming http://coldjava.hypermart.net Get your own

Re: Handling The Browser Back Button, et al (tms)

1999-08-17 Thread Craig R. McClanahan
"Kirkdorffer, Daniel" wrote: > You know the only problem I have with some of what Craig is saying below, is > that I think that we should stop trying to fight the platform, and start > developing for it. By that I mean we are developing "web" applications, so > they should work with the environm

Re: Handling The Browser Back Button, et al (tms)

1999-08-17 Thread Kirkdorffer, Daniel
g McClanahan > Sent: Tuesday, August 17, 1999 12:25 PM > To: [EMAIL PROTECTED] > Subject: Re: Handling The Browser Back Button, et al (tms) > > Frank Starsinic wrote: > > > Are there standard techniques for preventing a user from using the back > button &g

Re: Handling The Browser Back Button, et al (tms)

1999-08-17 Thread Craig R. McClanahan
Frank Starsinic wrote: > Are there standard techniques for preventing a user from using the back button > in the > browser and modifying and re-submitting a form? This issue has caused us serious > problems > in the past and we are wondering how other people handle this. >

Re: Handling The Browser Back Button, et al (tms)

1999-08-17 Thread Mike Knowles
Original Message- From: Frank Starsinic [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 17, 1999 12:53 PM To: [EMAIL PROTECTED] Subject: Handling The Browser Back Button, et al (tms) Are there standard techniques for preventing a user from using the back button in the browser and modifying and

Handling The Browser Back Button, et al (tms)

1999-08-17 Thread Frank Starsinic
Are there standard techniques for preventing a user from using the back button in the browser and modifying and re-submitting a form? This issue has caused us serious problems in the past and we are wondering how other people handle this. i'm not so sure we should be worried about the Back B