Reputation: 5041
I recently was handed a project that went bad. I only have access to the code live on the server.
Is there a way to grab all of the files from the server and have a working version on my local machine.
The .aspx files on the server do not seem to contain the .aspx.cs files that i am looking for.
Upvotes: 0
Views: 48
Reputation: 65156
If you have access to the files on the server, you can copy all files (and other related things such as databases) and it should run as-is.
If you have none of the code however you won't be able to change much. .aspx files are compiled at runtime so you can change whatever is in them, but logic will not be as easy.
.NET code decompiles reasonably nicely if it hasn't been obfuscated so you might try that as a last resort. But seriously, just find whoever originally wrote it and extort them until they divulge the source code.
Upvotes: 2