CodeFile vs CodeBehind(CodeFile 与 CodeBehind)
问题描述
CodeFile="file.ascx.cs"和CodeBehind="file.ascx.cs"在ASP.NET用户声明中有什么区别控制?
What is the difference between CodeFile="file.ascx.cs" and CodeBehind="file.ascx.cs" in the declaration of a ASP.NET user control?
是更新的还是推荐的?还是有特定的用途?
Is one newer or recommended? Or do they have specific usage?
推荐答案
CodeBehind:需要编译(ASP.NET 1.1 模型).编译后的二进制文件放在网站的 bin 文件夹中.在部署之前,您需要在 Visual Studio 中进行编译.当您不希望源代码以纯文本形式查看时,这是一个很好的模型.例如,在向您没有义务提供代码的客户交付时.
CodeBehind: Needs to be compiled (ASP.NET 1.1 model). The compiled binary is placed in the bin folder of the website. You need to do a compile in Visual Studio before you deploy. It's a good model when you don't want the source code to be viewable as plain text. For example when delivering to a customer to whom you don't have an obligation to provide code.
CodeFile:您为源文件提供部署解决方案.ASP.NET 2.0 运行时在需要时编译代码.编译后的文件位于 Microsoft.NET[.NET version]Temporary ASP.NET Files.
CodeFile: You provide the source file with the solution for deployment. ASP.NET 2.0 runtime compiles the code when needed. The compiled files are at Microsoft.NET[.NET version]Temporary ASP.NET Files.
这篇关于CodeFile 与 CodeBehind的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CodeFile 与 CodeBehind
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
