request values are null
hello ,
i want to let the user fill in some values and after that a new windows
should pop up.
in this window i need the values to generate some SQL Query.
with my skript at the bottom all values are null.
has anybody an idea to do it without getting null values ?
<script language="JavaScript">
<!--
function openWin( windowURL, windowName,windowFeatures ) {
return window.open( windowURL, windowName,windowFeatures ) ;
} // -->
</script>
<form name="index" method="post" action="JavaScript:newWindow =openWin('Controller.jsp',
'name','width=800,height=600); newWindow.focus()" onSubmit="">
value1: <input type="text" name="value1">
value2: <input type="text" name="value2">
<input type="Submit" name="Submit" value="">
</form>
Thanks in advance.
--
Andreas

