owen_yuen
10-31-2002, 06:57 PM
From Default.asp, I click a link to Pop up a small window allow user type in the criteria for searching. After user are done, they submit the form, then data pass back to default window with querystring then reload the page to display the new results.
The following two scripts are work fine into my locate drive(PWS). But after I move to web server for testing. It just reload the default.asp, but no querystring passing back. Is anything I make wrong??
Thanks
OWen
*****Script from Pop up window for pass data back****
window.opener.location.href = "default.asp?search=on&keyword="+document.Search.Keyword.value+"&forum="+forum
window.opener.location.reload();
*****Script from Pop up window for pass data back****
The following two scripts are work fine into my locate drive(PWS). But after I move to web server for testing. It just reload the default.asp, but no querystring passing back. Is anything I make wrong??
Thanks
OWen
*****Script from Pop up window for pass data back****
window.opener.location.href = "default.asp?search=on&keyword="+document.Search.Keyword.value+"&forum="+forum
window.opener.location.reload();
*****Script from Pop up window for pass data back****