Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在发布网站后上传了网站,现在我想更改位于 app_code 文件夹中的类中的一行代码。更改后,我再次发布网站并上传新的 app_code.dll 以替换旧的,但它不起作用。app_code 的全部功能不起作用。有没有人可以解决我的问题?提前谢谢。
该App_Code文件夹将解析您放入其中的任何源文件,例如 MyClass.vb 或 MyClass.cs。如果要将类编译为 DLL,则希望将 DLL 文件放入bin文件夹中。
App_Code
bin
如果这些类包含在您的项目中并且将其构建操作设置为编译,则它们将在您运行构建时自动编译到 Web 应用程序的 DLL 中,并且每次发布站点时都应该更新,因为发布会自动构建项目/解决方案。