3

我有需要使用 Javascript 调用的 ac# 类库。下面是 C# 类的代码。

using System;
using System.Collections.Generic;
using System.Text;

using System.Runtime.InteropServices;
using System.Windows.Forms;               //required for message box. 

namespace csharp.activex.sample
{       
        [Guid("0D53A3E8-E51A-49C7-944E-E72A2064F938"),
        InterfaceType(ComInterfaceType.InterfaceIsDual),
        ComVisible(true)]
    public interface IHello
    {
        [DispId(1)]
        int ShowDialog();
    };
    [
        Guid("873355E1-2D0D-476f-9BEF-C7E645024C32"),
        ProgId("csharpAx.CHello"),
        ClassInterface(ClassInterfaceType.None),
        ComDefaultInterface(typeof(IHello)),
        ComVisible(true)
    ]
     public class CHello : IHello
    {
        #region [IHello implementation]
        public string Hello()
        { 
           return "Hello from CHello object";
        }
        public int ShowDialog()
        {
            System.Windows.Forms.MessageBox.Show("C# is awesome");
            return 0;
        }
        #endregion
    };

    public class Class1
    {
            public void showDialog() {
                MessageBox.Show("Visual c# is awesome!");
            }
    }
}

我构建了这个类,我得到了一个复制到 c:\DLL 的 dll 文件。下面的代码用于注册 DLL

regasm C:\DLL\ActiveXClass.dll /codebase /tlb

我成功注册了消息类型。

我使用以下 javascript 代码创建了一个 html 文件。

<!DOCTYPE HTML>
<html>
       <head>
              <meta http-equiv="X-UA-Compatible" content="IE=edge">
              <script type='text/javascript'>
              var myAx1;
              function startService(){
                  myAx1 = new ActiveXObject("csharpAx.CHello");
                  if(myAx1 != null)
                 {
                      myAx1.showDialog();  
                 }

                  else{
                      alert("failed");
                  }

                  return false;
              }
              </script>
       </head>
       <body class="sapUiBody" role="application">
              <div id="content"></div>
              <a href='#' onclick='return startService()'>StartService</a><br />
       </body>
</html>

在如此获得的结果页面上,我单击启动服务。但我没有收到任何警报,例如“失败”或“Visual C# 很棒”。

请帮忙

4

2 回答 2

4

我解决了。有一个针对 activex 的安全选项需要启用才能执行此操作。

有关更多详细信息,请查看此链接 http://www.aras.com/Community/forums/p/2527/7698.aspx

于 2012-12-07T08:37:59.207 回答
2

我认为最好的解决方案是实施 IObjectSafety,如果您信任您的 activex,您不需要让您的用户检查互联网选项。第 5 点的此链接解释了如何操作:http ://www.olavaukan.com/2010/08/creating-an-activex-control-in-net-using-c/

于 2013-05-24T09:21:52.847 回答