在 VB6 或经典 ASP 中使用 .NET

Use .NET in VB6 or classical ASP(在 VB6 或经典 ASP 中使用 .NET)
本文介绍了在 VB6 或经典 ASP 中使用 .NET的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

重复 调用 .NET 方法从 VB6 通过 COM 可见 DLL

在 VB6 或经典 ASP 中使用/调用 .NET 类/函数/库 (.net 3.x) 有哪些方法?有没有人有这方面的经验?将 .NET 包装到 COM 需要多少努力?有没有帮助的工具?

Which ways exist to use/call .NET classes/functions/libraries (.net 3.x) in VB6 or classical ASP ? Has anybody experiences with that ? How much effort is necessary to wrap .NET to COM ? Are there tools which help ?

推荐答案

实际上很简单,我创建了从 VB6 COM dll 和 Classic ASP 调用的 .NET 组件.您基本上需要创建一个 COM 可调用包装器,它将 .NET 组件公开给 COM 客户端.本文将帮助您入门

It's pretty easy actually and I have created .NET components called from both VB6 COM dlls and Classic ASP. You essentially need to create a COM callable wrapper thats exposes the .NET component to a COM client. This article will get you started

从 COM 组件调用 .NET 组件

几个指针

  • 任何 COM 可调用类型都需要公共无参数构造函数
  • 将要公开给 COM 的任何方法、属性或事件标记为公共.
  • 显式实现接口 而不是依赖从你的类为你生成一个.

这篇关于在 VB6 或经典 ASP 中使用 .NET的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
quot;Overflowquot; compiler error with -9223372036854775808L(编译器错误-9223372036854775808L(Q;溢出Q))
Visual Studio 2010 ReportViewer Assembly References(Visual Studio 2010 ReportViewer程序集引用)
Weird behaviour when I open a reportviewer in WPF(在WPF中打开报表查看器时出现奇怪的行为)
how do i pass parameters to aspnet reportviewer(如何将参数传递给aspnet report查看器)