Author: JavierAndresCaceresAlvis | Posted on: 7/28/2009 7:32:57 AM | Views : 753

Hi there,


This code works on WinXP (IE7) but not in Windows 7 (IE8):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Untitled Page</title>
   
<script type="text/vbscript">

function Send(url,xml)
    Dim oSvrXMLHTTP
    Set oSvrXMLHTTP = CreateObject("Microsoft.XMLHTTP") 'Msxml2.ServerXMLHTTP.3.0
    oSvrXMLHTTP.open "POST", url, False
    oSvrXMLHTTP.setRequestHeader ...

Go to the complete details ...