When we publish .net web application , we get dlls created for every .aspx file. Now if we want to do a reverse engineering and get back .aspx and .aspx.cs files, How can I do this process ?. In case I use a .net Reflector, then from the reflector , I get only .cs files.. I cannot get back the .aspx files. But in the reflector , I can see the .aspx file represented in class format like public class Newfilename : MyOriginalaspxfileName, IHttpHandler ... but I want to get back the .aspx file like the way it was before publishing. Is it possible to get it back. ( because the earlier developer has published the code , then deleted the original code and left the organization )
I want to get back the .aspx file, so that I can add some dotnet controls like textboxes, labels etc. Is it possible for me to get the .aspx file.
View Complete Post