0

Is it possible to take a set of published web files and convert them back into a solution? I say this because a solution has been lost from our system, and the only files that can be found are the actual published files. I have looked around and can't seem to find anything on the matter, any help would be great!

Thanks a lot

Cubsoft
  • 1,147
  • 1
  • 10
  • 32

1 Answers1

1

For a Web Application the source code is compiled into DLL's. As far as I know there is no easy way to reverse engineer a Web Application back to source code. If you wish to do further research, use search terms such 'reverse engineer web application DLL', or 'retrieve source code from DLL' etc. Good luck!

FastGeek
  • 411
  • 2
  • 7
  • dotPeek by JetBrains decompiles DLLs into source quite quickly and accurately. I've used it a few times and was quite pleased. There might be other decompilers out there as well – Nick Sep 17 '13 at 13:46