Need to open a url using ASP/VbScript at server side

HeavenAngel

New Member
I have a process which works fine. When that process is completed, I want to notify and send some data to a url which is on another site at another location. I don't need to get data from another site. I tried to write this code in asp page \[code\]Function URLGet(URL)' Set Http = CreateObject("WinHttp.WinHttpRequest.5.1")' Set Http = CreateObject("WinHttp.WinHttpRequest.5")' Set Http = CreateObject("WinHttp.WinHttpRequest") Set Http = CreateObject("MSXML2.ServerXMLHTTP")' Set Http = CreateObject("MSXML2.XMLHTTP")' Set Http = CreateObject("Microsoft.XMLHTTP")' Set Http = CreateObject("MSXML2.ServerXMLHTTP.6.0")Http.Open "GET",URL,FalseHttp.SendEnd Function\[/code\]I got no response from there. I resolved many errors in this but still this is not working. Am I missing something? Please help me, I do not get any response at the remote side. My remote side would receive a data and store it into the database.I have tried every kind of objects of the above..Thanks
 
Back
Top