Call function in VB.Net DLL without registering a DLL

Is it possible to call a function in a VB.Net dll without registering a dll file? I need to call it from ASP Classic on a shared hosting web server.

+3
source share
2 answers

The only way to call the VB.NET DLL from classic ASP is to make it a COM object and name it as such.

+3
source

Assuming the host also supports .NET, you can follow these steps to achieve the desired result:

  • Creating a New ASP.NET Web Application
  • Add link to this dll
  • Create a .aspx web form calling the function in your Page_Load, call it, for example Func.aspx
  • ASP XMLHTTP Func.aspx, .

, " " ASP , .

+3

Source: https://habr.com/ru/post/1787868/


All Articles