[java ee programming] response.sendRedirect() using tag

2010-03-26 Thread thanooj bharateeyudu
hi all. iam using respose.sendRedirect() method to redirect to a page which is there in another web application in a single server. now. i need to redirect it by using response.sendRedirect() method by using tag i mean ... when i click on a hipe

Re: [java ee programming] response.sendRedirect() using tag

2010-03-26 Thread bambang teleinfocom
Hi, a. I mean by residing, the best term should be : proccessed at client side b. There is a rule that once a servlet already made a response, there is now way that you can redirect again, so in order to have a redirection then you must initiate another 'request' to the server from your jsp c.

Re: [java ee programming] response.sendRedirect() using tag

2010-03-26 Thread Senthil Chidambaram
Let me understand this clearly. You have an link and when the user clicks this link you want to redirect to another link. This should happen on the client side using javascript onclick event handler, location.href or something like that. You can look at javascript doc. thx Senthil On Fri, Mar 26

Re: [java ee programming] response.sendRedirect() using tag

2010-03-28 Thread bambang teleinfocom
Right, You can do it at the client side using javascript but you Can't do it at the client side if you want use : response.redirect() bb On Sat, Mar 27, 2010 at 2:03 AM, Senthil Chidambaram wrote: > Let me understand this clearly. You have an link and when the > user clicks this link you wan