• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Is there any way to uncompile a DLL file to see the classes within?

I think there are tricks to get within it to some degree, but ultimately part of the point of them is that you can't get into them, since they're compiled and theoretically take certain parameters and then do things internally to give you back results, as opposed to letting you see behind the scenes what's going on.
 
IIRC, ildasm could extract that information for you, assuming the library had been compiled into MS intermediate Language. If it's older, I can't help.
 
You can get the function names that it exports without much trouble, for how to actually use them you would need to find the documentation on that particular libary.
 
If it's a .NET assembly, ildasm will tell you everything you need to know. If it's Win32, just try opening it in a text editor and you might be able to pick out some interesting function names. Oh, and if it's a COM server, you can use OLE View to see what interfaces it provides.
 
Originally posted by: diegoalcatraz
IIRC, ildasm could extract that information for you, assuming the library had been compiled into MS intermediate Language. If it's older, I can't help.

There are also a number of obfuscators available that make it much more difficult to do this.
 
The story behind this is that I have a plug-in to my mailserver which lets me have a web-based admin screen.

The doc given only says to put the ASP pages into a directory where IIS can see it, and register the DLL file.

After talking to an ASP programmer, he states that the DLL will give a successful or rejected registered message, which I got the successful one.

I wrote to the company to obtain the documentation for the line in the ASP which is failing, but they haven't responded, and their tech support is crap.

So, this is my last resort to see if I can find the class within the DLL that is being referenced in hopes to find the correct syntax to modify the ASP page.
 
Back
Top