Yes, you should be able to do that using WebPostData Here is an example from online help (hope the message board script will not break it during posting) // Post new customer contact information using Web form WebPostData( "http://www.mycompany.com/cgi-bin/add_customer.cgi", & "name=Greg+Smith&company=ACME+Corp&phone=212-123-1234&fax212-123-5678&email=gsmith%40acme.com", & "c:\\temp\\confirm.htm" ) : All I want to do is automate/scheduale a process of connecting to a webserver : at a : particular url, fill in a login form, which includes : NAME: PASSWORD: There is no safty picture crap, thank god. : The format of the "NAME:" is email@here.com : and of coarse the password is simply a password. : Then I want to automatically log out in about 10 seconds. : Can I do this with 24x7 without opening my default browser? : Another words just send URL strings and responses via 24X7?
|