On Mon, 26 Dec 2005 04:12:58 GMT, rkc
<rkc@rochester.yabba.dabba.do.rr.bomb> wrote:
[color=blue]
>MLH wrote:[color=green]
>> Below is a snippet I found and am trying to experiment
>> with. Unfortunately, there's a compile time error in A97
>> complaining that "Response" (in line #1) is an undefined
>> variable. I'm unsure what is intended, so I can go no further.
>> If someone has an alternative for line #1 that will compile
>> in A97, I would appreciate the help.
>>
>>
>> Private Sub Command0_Click()
>>
>> Response.Buffer = True
>> Dim objXMLHTTP, xml
>>
>> Set xml = Server.CreateObject("Microsoft.XMLHTTP")
>>
>> xml.Open "GET", "http://www.4Guysfromrolla.com/", False, _
>> "Richard", "Welcome"
>>
>> ' Actually Sends the request and returns the data:
>> xml.Send
>>
>> Response.Write xml.responseText
>>
>> Set xml = Nothing
>>
>> End Sub[/color]
>
>Response is an ASP object.
>
>
http://psacake.com/web/gz.asp
>
>[/color]
Well, that's where it ends for me. I know nothing of ASP.
Perhaps there's something I can do in VBA that will emulate
what the Response object does. The link you furnished said
its used to send the output back to the client (browser). Will
play around with it some more.