SUB Post ( Document AS String , ContentType AS String , Data AS String ) |
---|
Implements POST HTTP method, that is, you send information to a server, and the server will process it and return a reply
- Document : the object placed in server that will process the information (usually the path of a CGI script)
- ContentType : standard codification definition of the data you want to send, for instance "text/plain" or "text/xml"
- Data : data that you want to send
Referenced by :