[java ee programming] response.sendRedirect() using a 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 a tag i mean ... when i click on a

Re: [java ee programming] jdbc

2010-03-26 Thread Senthil Chidambaram
Once the user is logged in you can store the userid in a session variable and use it for consecutive requests. As Saurabh said you have to present a screen to get the userid, if you don't want to authenticate the user you can byepass the authentication mechanism and just use the id. Hope this

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

2010-03-26 Thread Senthil Chidambaram
Let me understand this clearly. You have an a href=... 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