can anyone tell me how to put my asp code into my javascript block of code. for example, this is what i want:
<script language="javascript">
function chkSubmit(){
document.frmr.submit();
document.form1.action="update.asp?ReferenceID=<%=RS("OutageReferenceID")%>"
}
</script>
is there a way to do this?
<script language="javascript">
function chkSubmit(){
document.frmr.submit();
document.form1.action="update.asp?ReferenceID=<%=RS("OutageReferenceID")%>"
}
</script>
is there a way to do this?