Getting an object expected error on this script
'Temp Variable Declarations
MenloExFSC = "0.03"
CurrentFSC = "0.07
%>
<script language="text/javascript" >
function Customer_FSC()
{
if (document.dispatchform.frmDispatchCustomer.value = "Menlo") {
document.dispatchform.frmDispatchRateFSCRate.value = "<% Response.write MenloExFSC %>";
}
else
{
document.dispatchform.frmDispatchRateFSCRate.value = "<% Response.write CurrentFSC %>";
}
}
</script>
<%
the line in the form is (ASP/VBscript)
"Customer: <span class=""accesskey"">(Alt + C)</span><br><div align=""center""><input SIZE=""15"" name=""frmDispatchCustomer""
value=""" & DispatchCustomer & """ maxlength=""25"" accesskey=""C"" onKeyDown=""if(event.keyCode==13) {event.keyCode=9; Customer_FSC();}""></div>" & vbNewLine & _