Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to edit some of the items in asp.net page but i cannot access those c sharp back code in deployed copy and i dont have the back up of the deployed copy so can anyone help me either to convert the deployed copy or else can i edit the code which is present in server.

Thank you in advance
Posted

1 solution

When you create a web site your code and markup goes into two different palaces...The markup (ASPX) goes as is to the deployment, where the code (ASPX.CS) get compiled and goes to the bin in the form of an assembly (DLL).
If you have no access to the source code you may try to decompile those dlls but you have to be aware that the code will not be nice and easy to read, and if it was obfuscated that it will not be readable at all. You also have to think about the moral/legal implications if it is not your code...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900