XMLHTTP Bugs (Urgent)

  • Thread starter Thread starter DotNetJunkies User
  • Start date Start date
D

DotNetJunkies User

Hi ASP Gurus,
We have an application in ASP, in which we are using VB script in which we are using XMLHTTP object to send xml request to another asp page.

dim xmlhttpobj
set xmlhttpobj = Server.CreateObject("Microsoft.XMLHTTP")
msgbox err.number
xmlhttpobj .open "POST", "Test.asp", FALSE


In Error message we are getting "Object required". We are not able to create XMLHTTP object.
Configuration of the manchine is
IIS 5.0
IE 5.0 SP 3
Window 2000 Adavance server.
Waiting for solution..............

Cheers,
Alpha
 
Hi,

your script is server side. than you cannot use the msgbox statement.

HTH
Stefano Mostarda MCP
Rome Italy
 
Back
Top