ActiveX Unsafe in ASPNET run but not in HTML standalone

  • Thread starter Thread starter Harry Simpson
  • Start date Start date
H

Harry Simpson

I've got a signed ActiveX control which runs just fine embedded into an html
page but when i use the same code in an aspx page, i get first the "An
ActiveX control on this page is not safe..." error and then the "Object
doesn't support this property or method" error.

Why the different and how do i work around this? I have other controls on
the page that run just fine....

TIA
Harry
 
unsafe Active/X controls are allowed only if the page comes from the local
disk (or the user changed the security setting to low), but not a server.
the next security pack for IE locks it down even more, so I'd avoid active/x
controls.

to host an active/x control on your server page, the control must be signed
as safe, the user must turn on active/x support.

-- bruce (sqlwork.com)
 
Back
Top