943,545 Members | Top Members by Rank

Ad:
  • JSP Discussion Thread
  • Unsolved
  • Views: 2014
  • JSP RSS
Sep 3rd, 2007
0

Having problem in retrieveing values from pop-up window to main window

Expand Post »
This is my main window

<html>
<head>
<SPAN style="COLOR: green"><script language=javascript>
function PopWindow(URL,height,width)
{
// alert("in popwindow");
window.open(URL,height+width,"width="+width+",height="+height+",resize=no,resizable=no,scrollbars=yes,menubar=no,status=no");
window.focus();
}

</script>
</head>
<body>

<%

String StudentID=request.getParameter("id2");

System.out.println(StudentID);


%>

<form method="Post" name="f1" action="">
<table border=0 align=left>
<tr>
<td align=left><b><font color="maroon" size=3>&nbsp;|&nbsp;</font></b>Student ID</td><td><input type="text" name="StudentID" value="<%StudentID%>" size="20">&nbsp;&nbsp;&nbsp;&nbsp;<A HREF=JavascriptopWindow("><imgsrc="images/search.gif" border=0></a></td>
</tr>
</table>
<!-- end of table -->
</form>







this is my pop up window code

<
c:forEach var="i" items="${bean.studentid}">
<tr><td>
<a href=http://127.0.0.1:8081/I_Campus/MainWindow.jsp?>&id2=<c:outvalue='${i.key}'/>onclick=window_close() ><c:out value="${i.key}"/></a></td>
<td><c:out value="${i.value}"/>
</td>
</tr>
</c:forEach>


but when the window is closed the value is not retrieved in main window ..can any one help me up
i am getting value in system.out.println();
but not in text box(input box)
Last edited by aruna_k_2006; Sep 3rd, 2007 at 5:59 am.
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
aruna_k_2006 is offline Offline
18 posts
since Feb 2007
Oct 9th, 2007
-1

Re: Having problem in retrieveing values from pop-up window to main window

<HTML>
<HEAD>
<SCRIPT LANGUAGE="JAVASCRIPT">
function doZoomback(sourceobj, destinationObj)
{
destinationObj.value=sourceobj.value;
window.close();
}function doZoom(obj)
{
window.open("Zoomin.jsp?txttest=" + obj.value)
}
</SCRIPT>
</HEAD><BODY>
<TEXTAREA name="txtTest"><%=request.getParameter("txttest")%>
</TEXTAREA>
<input type="submit" name="cmdOK" value="OK" onclick="parent.doZoomback(txtTest,opener.document.all.txttest)">
</BODY></HTML>
The above program is similar to ur program so i think it will solve ur problem..
leave ur comment to my id
Reputation Points: 1
Solved Threads: 0
Junior Poster in Training
hidash_in is offline Offline
85 posts
since Oct 2007
Oct 9th, 2007
0

Re: Having problem in retrieveing values from pop-up window to main window

Mixing Java and JavaScript what a bad idea...
Moderator
Featured Poster
Reputation Points: 2786
Solved Threads: 871
Code tags enforcer
peter_budo is offline Offline
6,653 posts
since Dec 2004

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in JSP Forum Timeline: Inserting table row values generated dynamically into database using JSP
Next Thread in JSP Forum Timeline: inser data into database





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC