Hi guys,
I have this classic ASP code & new in WEB API how can I do it in ASP.NET(C#)
Code:
'Create the ServerXMLHTTP object
set objXMLHTTP = Server.CreateObject( "MSXML2.ServerXMLHTTP.4.0" )
objXMLHTTP.setOption(2) = 4096
objXMLHTTP.setOption(3) = ""
'This is the location of the system
objXMLHTTP.Open "POST", "https://" & BEANSTREAM_SERVER & "/scripts/process_transaction.asp", false
'Set the HTTP header's content type
objXMLHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
'Submit the transaction request to the system server
objXMLHTTP.Send( postData )
Tnx in advance
