Hey everyone,
I have this script for converting RSS to HTML using an ASP script. I can add any RSS href and it should open it and display it in HTML. The problem is it gives an error always on the same line 'objHttp.Send'. Any ideas what this line is?
This is the script:
<%
set objHttp = Server.CreateObject("Microsoft.XMLHTTP")
objHttp.open "POST", " false
objHttp.Send
If objHttp.status = 200 Then
response.write(objHttp.responseText)
End If
set objHttp = nothing
%>
I have this script for converting RSS to HTML using an ASP script. I can add any RSS href and it should open it and display it in HTML. The problem is it gives an error always on the same line 'objHttp.Send'. Any ideas what this line is?
This is the script:
<%
set objHttp = Server.CreateObject("Microsoft.XMLHTTP")
objHttp.open "POST", " false
objHttp.Send
If objHttp.status = 200 Then
response.write(objHttp.responseText)
End If
set objHttp = nothing
%>