Using third party DLL in ASP.NET

  • Thread starter Thread starter Zach
  • Start date Start date
Z

Zach

I see others have asked this group questions about ASP so I assume it is in
order to do so.



I am coding a new website I want to make use of third party DLL. If I simply
incorporate the libraries in with the objects I have created then the "using
...." which is required and which I have added to the class making use of the
dll's functionalities, causes an error: cannot be found. How should I go
about incorporating a third party dll in order to make use of its
functionalities when coding a website using ASP.NET and Visual Studio?



Many thanks,

Zach
 
I am coding a new website I want to make use of third party DLL. If I
simply incorporate the libraries in with the objects I have created then
the "using ..." which is required and which I have added to the class
making use of the dll's functionalities, causes an error: cannot be
found. How should I go about incorporating a third party dll in order to
make use of its functionalities when coding a website using ASP.NET and
Visual Studio?

In VS you add a ref to the dll.

For running you put the dll in the web app bin dir.

Arne
 
Back
Top