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组件的文章?
为什么 不好实现么?