PDA

View Full Version : Help on servlet page redirect


Chithra
10-22-2008, 01:55 AM
Hi All,

Am new to servelts and jsp also to java script.

This is the issue am facing.

1. A form is submitted(login form)
2. The values from the text box will be sent to a servlet
3. After validation for the userid and password.
4. The servlet will redirect to a different page
5. I wanted to display the resultant page in the new frame(target frame).

Can any one help me how to proceed with the step 5.

thanks in advance.

shyam
10-22-2008, 05:40 PM
submit the login form to the desired target...

<form target="targetframe" action="login.do">
</form>

Chithra
10-25-2008, 10:52 PM
Thank you that worked.