Re: response.sendRedirect problem

2002-06-27 Thread Vikramjit Singh
PROTECTED]] Sent: Thursday, June 27, 2002 9:22 PM To: [EMAIL PROTECTED] Subject: Re: response.sendRedirect problem Hi, In my project I am useing 'response.sendRedirect("somefilename.jsp")' . Its working fine. but my problem is each and every page I am checking my session wh

Re: response.sendRedirect problem

2002-06-27 Thread Bhushan_Bhangale
After the sendRedirect statement write return statement. -Original Message- From: srinivas tadikonda [mailto:[EMAIL PROTECTED]] Sent: Friday, June 28, 2002 9:52 AM To: [EMAIL PROTECTED] Subject: Re: response.sendRedirect problem Hi, In my project I am useing 'response.sendRed

Re: response.sendRedirect problem

2002-06-27 Thread srinivas tadikonda
Hi,  In my project I am useing 'response.sendRedirect("somefilename.jsp")' . Its working fine. but my problem is each and every page I am checking my session whether its expired or not..if expired I am redirecting to Login page using response.sendRedirect. but once I am useing this , after respons

Re: response.sendRedirect() problem to Irawan

2001-08-28 Thread Damodaran, Rajakumar (CORP, Consultant)
PROTECTED] Subject: Re: response.sendRedirect() problem to Irawan Once you set the cache to no, it is up to the browser to honor the request I believe. Also in your case, what I would check is to make sure that the code is working correctly. So you are saying that all the data/content are

Re: response.sendRedirect() problem to Irawan

2001-08-27 Thread Irawan
Did you add the no cache to the page open in the separate window also? If the new page open in the other window is also a jsp/servlet, then you also have to add the code there. The code to set the page to no cache is specific only for that particular page. When the page set to 'no cache' then th

Re: response.sendRedirect() problem to Irawan

2001-08-27 Thread Irawan
have more setting can set throw response? >>> >>>Jason >>>- Original Message - >>>From: Irawan <[EMAIL PROTECTED]> >>>To: <[EMAIL PROTECTED]> >>>Sent: Monday, August 27, 2001 9:51 AM >>>Subject: Re:

Re: response.sendRedirect() problem to Irawan

2001-08-27 Thread Senthil Raja V
Hi. Actually if I use setHeader "no cache" what is happening ? Is the files are not stored in C:\WINDOWS\Temporary Internet Files ? In my case i am not using any redirects but using encodeUrl and opening files in separate single window. The page opened in separate window is retained unchanged, ie

Re: response.sendRedirect() problem to Irawan

2001-08-27 Thread JavaSoft
: response.sendRedirect() problem to Irawan Hello Jason.I used the following response.setHeader methods inside my jsp page.still the page is not getting refreshed.but for me

Re: response.sendRedirect() problem to Irawan

2001-08-27 Thread Senthil Raja V
m: Irawan <[EMAIL PROTECTED]> >>To: <[EMAIL PROTECTED]> >>Sent: Monday, August 27, 2001 9:51 AM >>Subject: Re: response.sendRedirect() problem >> >> >> > Sure can. >> > From your code add the following 3 lines: >> > response.setHe

Re: response.sendRedirect() problem to Irawan

2001-08-27 Thread Irawan
on >- Original Message - >From: Irawan <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Monday, August 27, 2001 9:51 AM >Subject: Re: response.sendRedirect() problem > > > > Sure can. > > From your code add the following 3 lines: > > re

Re: response.sendRedirect() problem to Irawan

2001-08-26 Thread Jason Au
Subject: Re: response.sendRedirect() problem > Sure can. > From your code add the following 3 lines: > response.setHeader("Pragma", "No-cache"); > response.setHeader("Cache-Control", "no-cache"); > response.setDateHeader("Expires", 0); >

OOT -- Re: response.sendRedirect() problem

2001-08-26 Thread Irawan
: >Can you tell me how can i do that sir ??? > >== >thx, >H`L >- Original Message - >From: <mailto:[EMAIL PROTECTED]>Irawan >To: <mailto:[EMAIL PROTECTED]>[EMAIL PROTECTED] >Sent: Monday, August 27, 2001 6:30 AM >Subject: Re: response.sendRedirect() pro

Re: response.sendRedirect() problem

2001-08-26 Thread Irawan
:[EMAIL PROTECTED]>[EMAIL PROTECTED] >Sent: Monday, August 27, 2001 6:30 AM >Subject: Re: response.sendRedirect() problem > >You may want to try to set so that the browser will not cache the data >in >the list page jsp. > >At 11:28 AM 8/26/01, you wrote: > >i have a silly problem he

Re: response.sendRedirect() problem

2001-08-26 Thread JavaSoft
Can you tell me how can i do that sir ??? ==thx,H`L - Original Message - From: Irawan To: [EMAIL PROTECTED] Sent: Monday, August 27, 2001 6:30 AM Subject: Re: response.sendRedirect() problem You may want to try to set so that the browser will not cache the

Re: response.sendRedirect() problem

2001-08-26 Thread Irawan
You may want to try to set so that the browser will not cache the data in the list page jsp. At 11:28 AM 8/26/01, you wrote: >i have a silly problem here, if i delete a data in database from my jsp >page .. let say in the page i got 10 datas and i deleted one, and after i >deleted it i used sendR

response.sendRedirect() problem

2001-08-26 Thread JavaSoft
i have a silly problem here, if i delete a data in database from my jsp page .. let say in the page i got 10 datas and i deleted one, and after i deleted it i used sendRedirect() method to go back to the list page. I need to refresh the page or it will keep showing 10 datas. How can i make it

Re: response.sendRedirect() problem

2001-03-23 Thread Hans Bergsten
Thomas wrote: > > At the top of my page is an access control code block that checks to see if > a user is allowed access to the page. If the user doesn't have access, then > they are redirected to an error page. Below the control code is a procedure > to deal with a submitted form that updates a

R: response.sendRedirect() problem

2001-03-23 Thread Dark
> At the top of my page is an access control code block that checks to see if > a user is allowed access to the page. If the user doesn't have access, then > they are redirected to an error page. Below the control code is a procedure > to deal with a submitted form that updates a database. The

response.sendRedirect() problem

2001-03-23 Thread Thomas
At the top of my page is an access control code block that checks to see if a user is allowed access to the page. If the user doesn't have access, then they are redirected to an error page. Below the control code is a procedure to deal with a submitted form that updates a database. The problem