
Submitting Form WITHOUT a Submit Button
catch the enter event and call form1.submit()
ex :
Sub document_onkeydown
If window.event.keyCode = 13 Then
window.event.returnValue = 0
Call form1.submit()
End If
End Sub
--
*************************************************************************
DVICOM INC.
Alma, Qubec
Tel.: 1-418-690-2774
Fax: 1-418-668-0040
*************************************************************************
Quote:
> Hello Everyone,
> I am interested in submitting a form's contents to another asp page via
> code, as I do not want to depend on the user to hit a submit button. I
know
> this can be done via vbscript, but I cannot find the appropriate code.
Could
> someone please enlighten me? I am working under a deadline and need this
> info badly. I appreciate any help you can give me.
> Thanks,
> Kathleen Whitman