The below code calls a webservice with simple Addition and subtraction and return values
<html><head><title>Calling a webservice from classic ASP</title></head><body><%If Request.ServerVariables("REQUEST_METHOD") = "POST" ThenDim xmlhttpDim DataToSendDataToSend="val1="&Request.Form("text1")&"&val2="&Request.Form("text2")Dim postUrlIf Request.Form.Item("Operation")="Sum" ThenpostUrl = "http://www.webservicex.net/CurrencyConvertor.asmx"elsepostUrl = "http://www.webservicex.net/CurrencyConvertor.asmx"end ifSet xmlhttp = server.Createobject("