Set oXHttp = CreateObject("Microsoft.XMLHttp"
oXHttp.Open "POST","ProcessSearchRequest.asp",True/False
Open method can be a asynchronous call if we specify True as the 2nd parameter of the open method , and synchronous .. if we specify false. I'm using synchronousing calling mechanism and so I check the Ready State of the xml document. I get inconsistent database results when i do this, meaning someyimes i get the results back and sometimes i donnot. I'm doing a database query in the ProcessSearchRequest.asp page. When i specify True, ther resulst are always consistent. Can anybody help me with this...
oXHttp.Open "POST","ProcessSearchRequest.asp",True/False
Open method can be a asynchronous call if we specify True as the 2nd parameter of the open method , and synchronous .. if we specify false. I'm using synchronousing calling mechanism and so I check the Ready State of the xml document. I get inconsistent database results when i do this, meaning someyimes i get the results back and sometimes i donnot. I'm doing a database query in the ProcessSearchRequest.asp page. When i specify True, ther resulst are always consistent. Can anybody help me with this...