HuskerMark
Programmer
I'm trying without success to pass hidden form values to a new pop-up window that I've created. I'm pretty new to this, and could be missing something obvious, or I might not have the correct understanding of the window.open concept. I appreciate any guidance that any of you might have to offer.
I've tried this several different ways, but following is the basic code that I have so far (which opens the new window, but doesn't carry the hidden values I need.):
<form method="post" action="" name="frmWord" onSubmit="window.open('word_create.asp')">
<input type="hidden" name="nmeInsured" value="<%=nmeInsured%>">
<input type="hidden" name="CashPrice" value="<%=CashPrice%>">
<input type="hidden" name="StampTax" value="<%=StampTax%>">
<input type="hidden" name="AppFee" value="<%=AppFee%>">
<input type="hidden" name="NumOfPmts" value="<%=NumOfPmts%>">
<input type="hidden" name="PmtAmt" value="<%=PmtAmt%>">
<input type="hidden" name="PolEffDate" value="<%=PolEffDate%>">
<input type="hidden" name="AnnualRate" value="<%=AnnualRate%>">
<input type="hidden" name="FinCharge" value="<%=FinCharge%>">
<input type="hidden" name="PmtOpt" value="<%=PmtOpt%>">
<input type="hidden" name="TotalPays" value="<%=PmtTot%>">
<input type="hidden" name="State" value="<%=State%>">
<table border="0" cellpadding="0" cellspacing="0" width="50%" align="Left">
<tr>
<td align="Center"><input type="submit" name="subbtn" value="Client Quote Summary"></td>
</tr>
</table>
</form>
I've tried this several different ways, but following is the basic code that I have so far (which opens the new window, but doesn't carry the hidden values I need.):
<form method="post" action="" name="frmWord" onSubmit="window.open('word_create.asp')">
<input type="hidden" name="nmeInsured" value="<%=nmeInsured%>">
<input type="hidden" name="CashPrice" value="<%=CashPrice%>">
<input type="hidden" name="StampTax" value="<%=StampTax%>">
<input type="hidden" name="AppFee" value="<%=AppFee%>">
<input type="hidden" name="NumOfPmts" value="<%=NumOfPmts%>">
<input type="hidden" name="PmtAmt" value="<%=PmtAmt%>">
<input type="hidden" name="PolEffDate" value="<%=PolEffDate%>">
<input type="hidden" name="AnnualRate" value="<%=AnnualRate%>">
<input type="hidden" name="FinCharge" value="<%=FinCharge%>">
<input type="hidden" name="PmtOpt" value="<%=PmtOpt%>">
<input type="hidden" name="TotalPays" value="<%=PmtTot%>">
<input type="hidden" name="State" value="<%=State%>">
<table border="0" cellpadding="0" cellspacing="0" width="50%" align="Left">
<tr>
<td align="Center"><input type="submit" name="subbtn" value="Client Quote Summary"></td>
</tr>
</table>
</form>