I have a question about loading ActiveX Controls with ASP Classic.
The problem is that typically these controls are loaded from the server.
IT has locked out all Administrative rights on Workstations, so ActiveX
controls can not be loaded from remote servers without changes to group
policies which they do not care to make.
Here is the method the app loads the controls
This loads the control from the server. Now they are trying
to package the controls and deploy them locally on the client
side machine by copying them to a system directory and
registering them with regsvr32. If the path is removed, will
the control load from the client's local system directory?
The problem is that typically these controls are loaded from the server.
IT has locked out all Administrative rights on Workstations, so ActiveX
controls can not be loaded from remote servers without changes to group
policies which they do not care to make.
Here is the method the app loads the controls
Code:
<object ID="oPersonalInbox"
CLASSID="CLSID:0006F063-0000-0000-C000-000000000046"
CODEBASE="Graph/outlctlx.CAB#ver=9,0,0,3203"
HEIGHT="100%"
WIDTH="100%">
...
</object>
This loads the control from the server. Now they are trying
to package the controls and deploy them locally on the client
side machine by copying them to a system directory and
registering them with regsvr32. If the path is removed, will
the control load from the client's local system directory?
Code:
<object ID="oPersonalInbox"
CLASSID="CLSID:0006F063-0000-0000-C000-000000000046"
CODEBASE="outlctlx.CAB#ver=9,0,0,3203"
HEIGHT="100%"
WIDTH="100%">
...
</object>