Jump to content

Recommended Posts

Posted

i neet to send a string to a cgi script the string looks like this

"http://www.site.com/cgi-bin/log.cgi?action=log&Type=server&ip=190.123.x.x&id=user23&winuser=admin&size=245000"

#include <IE.au3>
$oIE = _IECreate ("http://www.site.com")
_IENavigate ( $oIE, "http://www.site.com/cgi-bin/log.cgi?action=log&Type=client&ip=190.123.x.x&id=user23&winuser=admin&size=245000")

this worked great but I wish to send it without explorer being opened

it just have to send the string without opening anyting

Posted

Did you try this?

#include <IE.au3>
$oIE = _IECreate ("http://www.site.com", 0, 0)
_IENavigate ( $oIE, "http://www.site.com/cgi-bin/log.cgi?action=log&Type=client&ip=190.123.x.x&id=user23&winuser=admin&size=245000")

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...