I have a DLL that contains a function which generates a string. The call looks like
string mystring =MakeCode(A, B, C, D, E, F, G);
I have no access to the source of the DLL. What I want to do is have my ASP page use the DLL to generate a string which is then displayed on the web page.
I have never done this from ASP.NET before so please be complete. I have seen many answers that say, "just register it and use it in your project". I need to know how to do these things.
I have placed the DLL in my APP_CODE subdirectory.
Thanks in advance.
I'd rather live with false hope than with false despair.