BillBrosius
Programmer
I need to be able to pass variables to a new page that will then process the information. Here is the basic idea of the process:
<Script Language="JavaScript">
Function PassInfo(url) {
window.open(url, target='new window');
}
</Script>
<Input Type="Text" Name="frmName" onchange="javascript
assInfo('process.asp?ID=<%=empID%>&val=this.form.frmName.value')>
The new page opens and gathers the variables using "request.querystring", but instead of getting the actual value of the Field named "frmName" I get "this.form.frmName.value".
What do I need to do to get the actual Field value?
Thanks.
<Script Language="JavaScript">
Function PassInfo(url) {
window.open(url, target='new window');
}
</Script>
<Input Type="Text" Name="frmName" onchange="javascript
The new page opens and gathers the variables using "request.querystring", but instead of getting the actual value of the Field named "frmName" I get "this.form.frmName.value".
What do I need to do to get the actual Field value?
Thanks.