Hello,am new to .net coming from a classic ASP background.We used to post data to a remote unix server using XMLHTTP object and read a status report from the remote server.something like thus. Comments are in redDim getsmsstatus Set getsmsstatus=CreateObject("WinHttp.WinHttpRequest.5.1") getsmsstatus.Open "GET", destination, False getsmsstatus.Send 'SENDS to the remote serveranswers = oXH.responseText ' gets a status report back
How do we achieve this in .netthanksEhi