D
Dave
I have this sample HTML code:
<html>
<head>
<script type="text/javascript">
var WinHttpReq = new ActiveXObject("WinHttp.WinHttpRequest.5.1");
</script>
</head>
<body>
</body>
</html>
As you can see it really does nothing but instantiate an ActiveX
control.
Loading the page off my desktop into IE6 results in this warning:
"An ActiveX control on this page might be unsafe
to interact with other parts of the page. Do you
want to allow this interaction?"
I'd like to turn this warning off since
* It's not a random ActiveX control it's a standard MS component
* It's not being installed from the internet. It's being loaded and run
from the local machine.
but from my reading I may not be able to do that. Does anyone know how
I can let IE6 know that it's safe to instantiate this object?
Thanks
<html>
<head>
<script type="text/javascript">
var WinHttpReq = new ActiveXObject("WinHttp.WinHttpRequest.5.1");
</script>
</head>
<body>
</body>
</html>
As you can see it really does nothing but instantiate an ActiveX
control.
Loading the page off my desktop into IE6 results in this warning:
"An ActiveX control on this page might be unsafe
to interact with other parts of the page. Do you
want to allow this interaction?"
I'd like to turn this warning off since
* It's not a random ActiveX control it's a standard MS component
* It's not being installed from the internet. It's being loaded and run
from the local machine.
but from my reading I may not be able to do that. Does anyone know how
I can let IE6 know that it's safe to instantiate this object?
Thanks