• In an ASP.NET website with a codebehind at what point are the .cs files compiled?


    In an ASP.NET website with a codebehind at what point are the .cs files compiled?

    This applies to Web Application projects as opposed to Web Site projects, which are CodeFile by default, and don't allow changing the build action...

    In ASP.NET Web Applications you have two methods of deploying your pages; CodeFile and CodeBehind. By default pages will always use CodeBehind but you can change this.

    CodeBehind

    CodeBehind compiles your .cs file into the .dll file in your bin folder at compile/build time, and then you deploy that to your web server. There is no need to deploy the .cs file to your web server. If you do, it will just sit there being unused.

    To configure a page with CodeBehind, ensure that:

    • The page directive in your .aspx file has CodeBehind="your.aspx.cs"
    • The properties of the .cs and .designer.cs files in solution explorer have a build-action of compile.

    CodeFile

    This causes ASP.NET to compile the .cs file on-the-fly on the server. This means that your .cs file needs to be deployed to the web server. It also means that your .cs file will not be compiled at compile/build time and therefore not built into your .dll in the bin folder.

    Key advantage

    With CodeFile, You can make changes to the .cs file and deploy just that file to see the changes on your production web server. No need to re-deploy. No need to recycle the app pool. This can be very useful in a lot of situations.

    To configure a page with CodeFile, ensure that all of the following are met:

    • The page directive in your .aspx file has CodeFile="your.aspx.cs"
    • The properties of the .cs file in solution explorer have a build-action of content
    • The properties of the .designer.cs file in solution explorer have a build-action of none.

    Notes

    • Intellisense doesn't like working when pages are set up with CodeFile (you can change to CodeBehind whilst coding and then change back for deployment, though).
    • If you change from CodeBehind to CodeFile, then always do a rebuild and re-deploy (and vice versa). This is because when the page was CodeBehind, the .cs was compiled into the .dllin the bin folder, and will remain there when you change to CodeFile. The CodeFile will be compiled on-the-fly and you will get the same code/classes defined in the .dll and in the on-the-fly compiled code, which will lead to runtime errors.
  • 相关阅读:
    字符转int 的几种方法
    递归在类中的写法
    修改多维才智的名字
    max中用 .net 判断输入的邮箱地址是否合格。
    找处场景中同名称的结点
    Android Button [ 学习笔记 一 ] 原创
    Android中Listview注意事项
    Android 移动开发一本就够学习笔记一
    ListActivity 学习[原创]
    在 Eclipse 中导入 Android 示例程序
  • 原文地址:https://www.cnblogs.com/chucklu/p/11150449.html
Copyright © 2020-2023  润新知