Dear Friends, I give below my coding.My requirement is as below. I am generating a table with three columns and one column is having a hyperlink and another 2 columns have checkboxes. Basically it is for the candidate profile. So after clicking the hyperlink ,i will get the second page wherein i will get the candidate details.After going thro'the same i will come back to first screen,where against the candidate name i will select the options provided in the two check boxes.I will repeat the procedure for the next candidate. But the problem is that when i go for the second candidate and view his profile and after coming to the first page ,the status of the first candidates becomes blank and it is not setting back to the original position. In a nutshell my settings at the checkboxes for the first candidate should not get changed even after going to and from the first page. My problem is that i should not use javascript. My coding: <%@ page language="java" session="true"%> <%@ page import="javax.servlet.*,javax.servlet.http.*,java.util.*, java.sql.*, java.io.*" %> <html> <head> <title>New Candidates</title></head> <body> <%! String req =" "; String jid =" "; String cid =" "; String ca_title =" "; String status =" "; String action =" "; int count = 0;
</body> </html> Please give your feedback. Regards, Ramamoorthy
NR Gopinath
Greenhorn
Joined: Jul 25, 2001
Posts: 9
posted
0
Hello, After seeing or entering candidate details thro' hyper link, are u reloading the page or simply coming back? if u reload the first page(page contains hyperlink and check box), then already checked boxes will come as empty.if u use javascript(history.back), then pervious information won't lost..
Rama moorthy
Greenhorn
Joined: May 18, 2001
Posts: 8
posted
0
Dear Gopi, Thanks for your reply. As mentioned I CAN NOT USE JAVASCRIPT .Also i hv to reload the page.Can u explain any possibility of coming back to first page keeping the same status? Regards, Ramamoorthy