Sir,
Im created a JSP file and using frame to do it (frame.jsp). The "record.jsp" got a hyperlink, when click on it, the information can display on "userDetail.jsp". But instead of display in same page(frame.jsp), it pop out another "userDetail.jsp".
Can give me some idea?
Thank You
-----
Here my code
<frameset rows="30%,70%">
<frame src="record.jsp" >
<frame src="userDetail.jsp" name="showframe">
</frameset>


