Yea right,
<input type="button" value="Open" onclick="openWdw()">
<script language="javascript">
function openWdw(){
var redURL="filenametoopen.asp?var1=" + formname.controlname.value + "&var2=" + ...;
var opn=window.open(redURL,"wdw","location=no,toolbar= no,menubar=no,scrollbars=yes,width=400,height=300" );
}
</script>
means, you pass the form values as a querystring to the new file to be opened. There you refer the querystring to get the value using
val1=request.querystring("querystringname")
|