• λ我爱Aspx >> Asp.Net >> ASP.NET 2.0 new features
  • ASP.NET 2.0 new features

  • :aspxer  Դ:internet  :2007-5-20 16:33:26  ؼ:.net,asp.net,asp
  • ASP.NET 2.0 new features

    p;

    From quickstart:

    Simplified Code Behind Model New in 2.0

    ASP.NET 2.0 introduces an improved runtime for code-behind pages that simplifies the connections between the page and code. In this new code-behind model, the page is declared as a partial class, which enables both the page and code files to be compiled into a single class at runtime. The page code refers to the code-behind file in the CodeFile attribute of the <%@ Page %> directive, specifying the class name in the Inherits attribute. Note that members of the code behind class must be either public or protected (they cannot be private).

    C# CodeBehind Code Separation

    The advantage of the simplified code-behind model over previous versions is that you do not need to maintain separate declarations of server control variables in the code-behind class. Using partial classes (new in 2.0) allows the server control IDs of the ASPX page to be accessed directly in the code-behind file. This greatly simplifies the maintenance of code-behind pages.

    Ҷƪл˵?
  • һƪ如何让用户在关闭浏览器后,使ASP.Net程序,在1分钟后,Session失效
    һƪASP.NET 2.0 new features