I have used an auto submit script when needing to submit data using post by useing the following vbscript
<script language="vbscript">
document.form.submit
</script>
now I have a page that I want to do that, however I want to set a time before it will actually run the script. In javascript I know I could set a timeout for before it will run the script, Ex:
setTimeout('callFunction()', 200);
however it seams as though it doesn't want to take a jscript function and use it to apply to a vbscript function...so my Question would be either: Is there a timeout setting for vbscript? or Is there a way to auto submit a form in javascript?
Thanks in advance!
- Ovatvvon :-Q
<script language="vbscript">
document.form.submit
</script>
now I have a page that I want to do that, however I want to set a time before it will actually run the script. In javascript I know I could set a timeout for before it will run the script, Ex:
setTimeout('callFunction()', 200);
however it seams as though it doesn't want to take a jscript function and use it to apply to a vbscript function...so my Question would be either: Is there a timeout setting for vbscript? or Is there a way to auto submit a form in javascript?
Thanks in advance!
- Ovatvvon :-Q