Could you please tell me more about parameters, like:
SetCookie=....
Post=...
Referer=...
ModifiedSince=...
Or is there a tutorial about it?
Also read Help | FAQ - How to specify a custome referrer, cookie or a POST request.
Oleg.
>
> Also read Help | FAQ - How to specify a custome referrer, cookie or a POST request.
>
> Oleg.
Thanks, Oleg. But I want to know how to use them, and I want some examples. Maybe I should learn something more about HTML language first?
Referer specifies a page URL that contains a link to the page you want to load. For example:
http://www.server.com/somepage.htm
Referer=http://www.server.com/dir/callingpage.htm
Post - normally you don`t need to know yourself how to form it, because it is coded in HTML page. It passes parameters from the Web page form to the server (like logon info, search, etc.). Anyway, you can use URL macros in some cases to automate POST requests.
An easiest way to get the POST example is to fill parameters of some Web page form in Internal browser and hold down Alt-Ctrl while submitting it.
The same is for Cookes.
ModifiedSince allows you to request only pages that were changed after the specified date. An example:
ModifiedSince=Tue, 03 Dec 2002 09:25:08 GMT
Please use exactly the above format.
Oleg.