C#生成com组件,供asp调用

一、vs2005—新建项目—C#类库

类库源码如下(包含接口,类,事件接口):

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Data.SqlClient;
using System.Runtime.InteropServices;

namespace entryclass
{

    //Guid值的产生:Program FilesMicrosoft Visual Studio 8Common7Toolsguidgen.exe,运行它,选中单选4,点“New Guid”,点“Copy”,进入类库,粘贴即可
   //类接口
    [Guid("F2257E71-ECC9-47ef-A065-F5B530F24B07")]       
    public interface ini_mng_Interface       
    {
        [DispId(1)]              //固定写法,索引号从1开始
        string ini_dme(string entryuser, string entrypass, string agentname, string agentpass, string constr);
        [DispId(2)]   
        string ini_svr(string entryuser, string entrypass, string agentname, string agentpass, string constr);
    }


    // 事件接口
    [Guid("45875EE5-5C8D-4016-897A-FCC7DD5A6834"),             //固定写法
    InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
    public interface ini_mng_Events
    {
    }

    //类
    [Guid("8EDFA9EA-9589-4157-AEEF-AB4861EFE5D6"),                 //固定写法
    ClassInterface(ClassInterfaceType.None),
    ComSourceInterfaces(typeof(hst_odr_Events))]
    public class ini_mng : ini_mng_Interface                    //该类继承上面的接口,并实现抽象方法
    {
        public string ini_dme(string entryuser, string entrypass, string agentname, string agentpass, string constr)
        {
            return "0";
        }

        public string ini_svr(string entryuser, string entrypass, string agentname, string agentpass, string constr)
        {
            return "0";
        }

     }
}

 

二、类库生成COM组件

完成第一步(编代码),然后
1、开始—VS2005 —VS Tools—VS命令提示符,输入“sn -k a1.snk”,回车,再输入“sn -p a1.snk a2.snk”,回车,最后输入“sn -t a2.snk”,回车,关闭完成。
2、VS2005类库属性—生成—输出—选中“为com.....注册”选项
3、VS2005类库属性—Signing —签名文件—浏览到a1.snk文件(Program FilesMicrosoft Visual Studio 8VC)
4、VS2005—Assembly.cs—comVisible设为true
5 、生成项目—即在bin下生成

 

三、asp调用com组件

1、在asp页面中加入<!--metadata type="typelib" file="tld文件的绝对路径"-->

2、在asp中就可以通过 x 来调用com组件类中的方法了:
     set x=server.createobject("组件名. 类名")

 

http://www.cnblogs.com/rentj1/archive/2009/02/23/1396187.html

 

1 新建类库MyTestDLL

2 右击项目“MyTestDLL”-》属性-》生成-》勾选“为COM互操作注册”

3 打开 AssemblyInfo.cs 文件 修改 [assembly: ComVisible(true)]

4 打开Visual Sutdio 2008 的命令提示行工具输入guidgen.exe 选

择DEFINE_GUID 单击 "New GUID"

5代码

      1、每个类名对应一个接口名,接口名是类名前加上一个大写的I

      2、接口中声明的方法要使用属性 [DispId(n)]

      3、类必须有一个无参构造函数

using  System;
using  System.Collections.Generic;
using  System.Linq;
using  System.Text;
using  System.Runtime.InteropServices;
namespace  MyTestDll
{

     
//   这里Guid为第4步生成的。
    [Guid( " FFA4B191-FB5B-4dd5-B7B1-B2F32BF6F1FF " )]
    
public   interface  IMyTestDll
    {
        [DispId(
0 )]
        
string  GetAbout();
    }
    
public   class  Test1:IMyTestDll
    {
        
private   string  summary;
        
public  Test1()
        {
            summary 
=   " 这是我的第一个测试 " ;
        }
        
public   string  GetAbout()
        {
            
return  summary;
        }
    }
}

 

6 生成项目

ASP测试代码 

<%  
  Dim  o   
  Set o = Server.CreateObject("MyTestDll.Test1")  
  Response.Write o.GetAbout()
  Set o=Nothing 
 
  %>  

提示:如果要在其他的电脑使用我们用C#开发的这个COM组件还需要是用regasm来注册

方法为:

首先把bin\Debug目录的文件拷贝到目标电脑上,然后打开命令提示行工具输入:
regasm 你拷贝到的目录/文件名.dll /tlb f:/dll/文件名.tlb /codebase

 运行既可在该电脑上使用。

参考资料:

 

http://topic.csdn.net/u/20080625/13/0294fe91-200c-4939-b36b-c9a2c6781354.html


http://topic.csdn.net/t/20060314/15/4613620.html

http://cplus.e800.com.cn/articles/2009/211/1234338268521_3.html


http://topic.csdn.net/t/20020712/10/868557.html
http://www.itzhe.cn/news/20071123/21768.html

http://www.cnblogs.com/illele/archive/2007/10/25/937050.html

你可能感兴趣的:(asp)