Sample code for 30+ languages & platforms
Classic ASP Requires Chilkat v11.0.0+

Transition from Http.PostUrlEncoded to Http.HttpReq

Provides instructions for replacing deprecated PostUrlEncoded method calls with HttpReq.

Sends the following raw HTTP request:

POST /echoPost.asp HTTP/1.1
Host: www.chilkatsoft.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 50

company=example&ip=111.111.111.111&url=example.com

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

set http = Server.CreateObject("Chilkat.Http")

url = "https://www.chilkatsoft.com/echoPost.asp"

set req = Server.CreateObject("Chilkat.HttpRequest")
req.AddParam "company","example"
req.AddParam "ip","111.111.111.111"
req.AddParam "url","example.com"

'  ------------------------------------------------------------------------
'  The PostUrlEncoded method is deprecated:

' responseObj is a Chilkat.HttpResponse
Set responseObj = http.PostUrlEncoded(url,req)
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

'  ...
'  ...

'  ------------------------------------------------------------------------
'  Do the equivalent using HttpReq.
'  Your application creates a new, empty HttpResponse object which is passed 
'  in the last argument and filled upon success.

set req2 = Server.CreateObject("Chilkat.HttpRequest")
req2.AddParam "company","example"
req2.AddParam "ip","111.111.111.111"
req2.AddParam "url","example.com"

req2.HttpVerb = "POST"
req2.ContentType = "application/x-www-form-urlencoded"

set resp = Server.CreateObject("Chilkat.HttpResponse")
success = http.HttpReq(url,req2,resp)
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

'  Results are contained in the HTTP response object...

%>
</body>
</html>