Unmanaged DLLs with ASP.NET
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Hi All, I want to use an unmanaged dll with in an aspx page (with c#). I try the below code that I am sure it works with a console program.
[DllImport("myapi.dll", CharSet = CharSet.Auto)] public static extern IntPtr function1(); . . . function1();
How could I use this dll with asp.net. Or do you have any advice to integrate a type of any other project with asp.net to use this dll. Also I need a second adwice on working with an exe, in an aspx page. thax a lot.karanba