Jump to content

How to realize?


Krol
 Share

Recommended Posts

How to realize?

There Is a script on a server, for example www.test.com/test.asp

It needs to be sent parameters of type www.test.com/test.asp?val=1 to send it will be necessary very often.

A question. How to realize that worked more less quickly?

Link to comment
Share on other sites

@Krol: I'm having a difficult time following your request. Maybe some more detail about what you are trying to accomplish would help? For example, are you asking how to send information to the server? Are you asking how to write the code for the server itself? Etc.

If you could give us a broader description of what you are trying to accomplish, maybe we can help you out.

Auto3Lib: A library of over 1200 functions for AutoIt
Link to comment
Share on other sites

How to realize?

There Is a script on a server, for example www.test.com/test.asp

It needs to be sent parameters of type www.test.com/test.asp?val=1 to send it will be necessary very often.

A question. How to realize that worked more less quickly?

What is your first language? http://www.autoit.de may help...

The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN

Link to comment
Share on other sites

2 theguy0000 , First russian, sorry for my english :whistle:

I shall try to explain more precisely...

have a site - www.somesite.com

And a script on this site - www.somesite.com/somescript.asp

The script accepts parameters, for example so www.somesite.com/somescript.asp?parametr=1

Question. How it is possible to send this script parameters?

Similarly to

Only without IE (without any windows. in a background)

Link to comment
Share on other sites

2 theguy0000 , First russian, sorry for my english :whistle:

I shall try to explain more precisely...

have a site - www.somesite.com

And a script on this site - www.somesite.com/somescript.asp

The script accepts parameters, for example so www.somesite.com/somescript.asp?parametr=1

Question. How it is possible to send this script parameters?

Similarly to

Only without IE (without any windows. in a background)

hey, if you don't want any windows you should be able to use something like this:

#include <IE.au3>
$oIE = _IECreate("http://www.autoitscript.com/forum/index.php?showtopic=34985", 0, 0, 1) ;note the second 0 will make the window hidden
;DO STUFF HERE
_IEQuit ($oIE)

This will not create a visible IE window... the code is untested but it should work.

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...