各位高手 小弟这里有遇到问题了 Delphi编写的Dll文件可以被ASP调用么?
Delphi编写的Dll文件可以被ASP调用么? 我用的是VBscript语言
function informationS(dr_name:string;str:string):Pchar;stdcall;
external 'showdll.dll'; //这个是Delphi要传递的参数
在ASP 里我调用DLL成功
<%
Set DelphiASPObj = Server.CreateObject("showdll.showhello")
%>
请问我用VBscript脚本怎样向 DLL里面传递参数?
这个过程我在VBscript 引用不了啊~!!!
function informationS(dr_name:string;str:string):Pchar;stdcall;
我在网上找不到有关Delphi编写ASP DLL组件的文章?
为什么 不好实现么?