Sean O'Connor wrote on 06 aug 2007 in
microsoft.public.inetserver.asp.db:
>> SOC wrote on 06 aug 2007 in microsoft.public.inetserver.asp.db:
>>
[quoted text clipped - 31 lines]
>>> response.Redirect("somepage.html")
>>> %>
[Please do not toppost on usenet]
> I have been able to create a web page using filesystemobject, but I
> can't generate content using msxml:
>
> Response.Expires = -1
> URLToRSS=http://www.abc123.xyz.com
Forgetting the quotes is unforgivable in vbs!!!
[while allowed in jscript]
> Set xmlHttp = Server.CreateObject("MSXML2.ServerXMLHTTP3.0")
Try:
"MSXML2.ServerXMLHTTP"
> xmlHttp.Open "Get", URLToRSS, false
> xmlHttp.Send () (....line27)
[quoted text clipped - 6 lines]
>
> /404.asp, line 27
[advice: do not use 404.asp for testing!]
This works fine overhere:
<%
Response.Expires = -1
URLToRSS="http://www.google.com/"
Set xmlHttp = Server.CreateObject("MSXML2.ServerXMLHTTP")
xmlHttp.Open "Get", URLToRSS, false
xmlHttp.Send ()
response.write xmlHttp.ResponseText
%>

Signature
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. - 06 Aug 2007 16:36 GMT
Evertjan. wrote on 06 aug 2007 in microsoft.public.inetserver.asp.db:
> Sean O'Connor wrote on 06 aug 2007 in
>> "Evertjan." <exjxw.hannivoort@interxnl.net> wrote in message
>>> SOC wrote on 06 aug 2007 in microsoft.public.inetserver.asp.db:
Why do you change your name in one and the same thread, Sean?

Signature
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)