How to programatically submit a html button from vb?
I want to read data from a web site programatically ; let's say that my site have 3 pages, p1.html, p2.html and p3.html; in p1 there is a radio button, if i choose option1, and use submit button, it display p2.html, if i choose option2, it display p2.html; the source is something like that:
In fact, I don't need java for this, I want to intercept this submit button from vb code, using an instance of IE, so, I need to know how this hidden button can be used using document properties
Let's say i want to read a html formular, which consist on 2 page: in the first page i have to complete a radio option and in the second page, based on my option, return sec1.html or sec2.html
the first page have a submit button, which is hidden and masked with a image type button.
I want to programatically , using document.getEle mentById to complete the option, lets say with option2, but also, after that, to simulate the user push button,...
Leave a comment: