Opps Here the code
<%
Response.Buffer = True
Dim objXMLHTTP, xml
'Create & initialize the XMLHTTP object
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
sRemoteURL = "https://www.eProcessingNetwork.Com/cgi-bin/tdbe/transact.pl"
'Open the connection to the remote server
xml.Open "POST", sRemoteURL, False
'Send the request to the eProcessingNetwork Transparent Database Engine
xml.Send "ePNAccount=05971&CardNo=05971&ExpMonth=10&ExpYear=01" & _
"&Total=12.95&Address=123&Zip=12345&HTML=No"
'store the response
sResponse = xml.responseText
Response.Write "<body>"
'parse the response string and handle appropriately
sApproval = mid(sResponse, 2, 1)
if sApproval = "Y" then
Response.Write "Your transaction has been approved with the " & _
"following response: <b>" & mid(sResponse, 3, 16) & "</b><br>"
iPosition = instr(sResponse, ",")
if iPosition > 0 then
iAvsLength = len(sResponse) - iPosition - 2
Response.Write "AVS Response: <b>" & _
mid(sResponse, iPosition + 2, iAvsLength) & "</b>"
end if
elseif sApproval = "N" then
Response.Write "Your transaction has been declined with the " &
"following response: <b>" & mid(sResponse, 3, 16) & "</b><br>"
else
Response.Write "The processor was unable to handle your " &
"transaction, having returned the following response: <b>" & _
sResponse & "</b><br>"
end if
Response.Write "</body>"
Set xml = Nothing
%>