try:internet选项->安全-〉自定义级别-〉启用“对没有进行标记为安全的控件进行初始化“

解决方案 »

  1.   

    2。com中设置安全标记Marking in the Registry Yourself
    You can add the necessary keys to  the control in the registry either when you install the control or later. The two keys you need are both of the following form: \HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\<GUID of control class>\Implemented Categories\<GUID of category>The ActiveX SDK header file ObjSafe.H defines the GUID values for CATID_SafeForInitializing and CATID_SafeForScripting.. Since for StopLite, the class GUID is {20048BB3-DB68-11CF-9CAF-00AA006CB425}, the two keys we add are: REGEDIT4[HKEY_CLASSES_ROOT\CLSID\{20048BB3-DB68-11CF-9CAF-00AA006CB425}\Implemented Categories][HKEY_CLASSES_ROOT\CLSID\{20048BB3-DB68-11CF-9CAF-00AA006CB425}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}][HKEY_CLASSES_ROOT\CLSID\{20048BB3-DB68-11CF-9CAF-00AA006CB425}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]To have the component categories properly described in the registry, you should also add the following keys: REGEDIT4[HKEY_CLASSES_ROOT\Component Categories][HKEY_CLASSES_ROOT\Component Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
    "409"="Controls that are safely scriptable"[HKEY_CLASSES_ROOT\Component Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]
    "409"="Controls safely initializable from persistent data"Don't use this method unless you have no other choice, and never use this method to  as safe controls that aren't really safe.