I have a C# web service, and would like to call functions from a another C# DLL that has some DB related functions.
Where do I place the DLL and how do I reference the DLL in my web service for everything to work.
I am brand new to web services, thanks for helping.
You can add and call DLL in your web services as same as in any other project. Just right click on the References and select ‘Add References’ and select the DLL which your want to use.