如何从 ASP.NET 项目重新创建代码隐藏文件
不幸的是,最近在我的网站上工作的开发人员决定消失,我的网站上有所有文件(包括 bin 文件夹中的 DLL),但没有任何代码隐藏文件。这使得我无法在 VS.NET 中进行调试。
有没有办法从 bin 中的 DLL 重新创建 Web 项目的代码隐藏文件?
我已经可以使用重构工具查看 dll 中的代码,但该工具不允许我生成 asp.cs 文件。 请帮忙。
Unfortunately, recently the developer that used to work on my site decided to disappear, I have all the files to my site (including the DLLs in the bin folder) but none of the codebehind files. This is making it impossible for me to debug in VS.NET.
Is there a way to recreate codebehind files for a web project from the DLLs in the bin?
I can already view the code in the dlls using a refactoring tool but the tool doesnt let me generate the asp.cs files.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我可以使用 .NET Reflector 来修改和修改吗?快速重新编译代码?
您可以使用Reflexil完全重新生成VS项目。
Can I use .NET Reflector to modify & recompile the code quickly?
You can use Reflexil to completely regenerate the VS project.
最好的办法是使用 Reflector 之类的工具反编译 bin 文件夹中的 DLL。
Your best bet is to decompile the DLLs in the bin folder using something like Reflector.
Redgat 的 .NET Reflector Proe 将让您进行调试(即时生成源代码) 。
您需要一个反编译器来生成源代码。
.NET Reflector Pro from Redgate will let you debug (generates source on the fly).
You need a decompiler to generate source.