TestDll.dll (位置不在网站的Bin目录下,在C:\dll\目录下注册,权限已设置为aspnet用户可以读写)
这个命名空间是 TestDll
有个类是Pub
Pub下有个GetAbout()方法
<%
Dim o
Set o = Server.CreateObject("TestDll.Pub")
Response.Write o.GetAbout()
Set o=Nothing
%>
这个OK
求ASP.net方法。
DLLImport
[DllImport("user32.dll")]
public static extern string GetString();
右键点工程里的"引用",把TestDll.dll 引用到工程,
在cs文件中
using testdll;
这样在cs文件中就可以用了.
Pub p=new pub();