CodeFile 与 CodeBehind

CodeFile vs CodeBehind(CodeFile 与 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
how do i pass parameters to aspnet reportviewer(如何将参数传递给aspnet report查看器)
Bind multiple parameters from route and body to a model in ASP.NET Core(在ASP.NET Core中将路由和主体中的多个参数绑定到一个模型)
Custom model binding in AspNet Core WebApi?(AspNet Core WebApi中的自定义模型绑定?)
How to minify in .net core mvc view?(如何在.Net核心MVC视图中缩小?)