I'm writing a vbscript to open IE and fill out some information and then submit the form
ive got as far as all the information being filled in but i cant get it to submit
how do I get it to submit?
webforms not submitting(VBscript)
Moderators: JRL, Dorian (MJT support)
Hi,
Grab the form object and issue it's submit method:
TheForm.Submit
If the form has a submit button named "submit" you will get an error trying to call the submit function because it has been replaced by the button. In this case the workaround is to call the click function of the submit button instead:
TheForm.Submit.Click
Grab the form object and issue it's submit method:
TheForm.Submit
If the form has a submit button named "submit" you will get an error trying to call the submit function because it has been replaced by the button. In this case the workaround is to call the click function of the submit button instead:
TheForm.Submit.Click
MJT Net Support
[email protected]
[email protected]