I have been asked to rewrite a website that was written in VBScript
I am now writing it in C#
On the old VBScript code they are creating a graphing object from this line of code
Set Chart = Server.CreateObject("csDrawGraph.Draw")
I assume that would be the name of the .dll file or is that incorrect? How do I go about finding that .dll file on the server so that I can then add a reference to it and use that in my C# code?
I have tried searching for csDrawGraph.Draw as well as csDrawGraph.Draw.dll in C:\Windows.System32 as well as the "wwwroot" folder and the GAC
CreateObjectcreates a COM object (in this case, most likely an ActiveX control). There is not necessarily any correlation between the name of that object and the DLL that contains it.