If have written an ISAPI extension providing various functions.
Calling functions without parameters works without any problems.
To call the function Test which has one parameter I use the following
statements.
<script>
..
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.Open("POST","http://server/MyExtension.dll?Test?Default
text=Hallo", false);
xmlhttp.Send();
...
</script>
Unfortunately this posting doesn't create any response. Using the same
URL in IE directly succeeds.
It seems that there are differences in the treatment of parameters in IE
and the XMLHTTP object?
Any suggestions?
Thanks,
Wolfgang