c# - 使用 Javascript ActiveX 对象触发 C# dll

标签 c# javascript vb.net activex

我有一个 C# 类库,我需要使用 Javascript 调用它。下面是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!");
            }
    }
}

我构建了这个类,我得到了一个 dll 文件,我将其复制到 c:\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# 很棒”之类的警报。

请帮忙

最佳答案

我解决了。为此需要启用 activex 的安全选项。

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

关于c# - 使用 Javascript ActiveX 对象触发 C# dll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13758205/

相关文章:

c# - .NET 4.0 中的 SpellCheck.IsEnabled ="True"(不适用于德语 .NET 4.0 框架)

javascript - Gulp 自定义函数返回并行不会做任何事情

javascript - 如何更改 Razor 中剑道网格的可分页消息?

c# - XML 列输出

c# - 使用 RemoveChild() 删除子节点

c# - fox pro查询返回顺序行号

javascript - 非滚动页面底部的 Facebook Like 按钮

database - 维持客户账户余额的最佳方式

java - Java 中的 WITH 语句

c# - 表达式.Convert : Object of type 'System.Int64' cannot be converted to type 'System.Int32'