Nikolaj
Nikolaj

Reputation: 429

Extract aspx pages from precompiled asp.net web site

Is it in any way possible to go from a pre-compiled asp.net site and back to something resembling the original code (with markup that I can update in aspx and ascx files). I have lost the original code and is left with the precompiled version of the pages. It is possible to disassemble the dlls but the code is very hard to figure out and I get many different error messages, when I try to update and rebuild the dlls that contains the precompiled aspx and ascx pages.

Upvotes: 0

Views: 1387

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1039398

Reflector is your friend, or ildasm.exe if you know how to read MSIL. And next time use a VCS to put this code under source control to avoid uncomfortable situations like this.

Upvotes: 4

Related Questions