robbiedwards6
Technical User
Hi all,
I need a server side IE automation in ASP
So when a client calls an asp page, this page will
open a local (server-side) IE window.
I tried the next ASP code:
<head runat="server">
</HEAD>
<%
dim IE
IE = CreateObject("InternetExplorer.Application")
IE.navigate("google.com")
IE.visible = true
%>
I did not get any errors, but from the other hand
no IE window is opened on the server-side.
Can any one help?
I need a server side IE automation in ASP
So when a client calls an asp page, this page will
open a local (server-side) IE window.
I tried the next ASP code:
<head runat="server">
</HEAD>
<%
dim IE
IE = CreateObject("InternetExplorer.Application")
IE.navigate("google.com")
IE.visible = true
%>
I did not get any errors, but from the other hand
no IE window is opened on the server-side.
Can any one help?