ASP.NET 2.0 new features

來源:互聯網
上載者:User
asp.net  

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.



這對開發來說確實是一個改進,CodeBehind中去掉server control的聲明會使代碼"清爽"很多,看起來舒服多了。請看樣本:

這對開發來說確實是一個改進,CodeBehind中去掉server control的聲明會使代碼"清爽"很多,看起來舒服多了。請看樣本: 頁面中我們放置一個textbox:Test.aspx
<%@ page language="C#" CodeFile="Test.aspx.cs" Inherits="Test_aspx" %>

<html>
<head>
    <title>Test ASP.NET 2.0</title>
</head>
<body>
    <form runat="server">
      <asp:TextBox ID="TextBox1" Runat="server"/>
      <asp:Button ID="Button1" Text="Click Me" Runat="server"/>
      <br />
      <br />
    </form>
</body>
</html>Test.aspx.csusing System;

public partial class Test_aspx: System.Web.UI.Page
{
    protected void Button1_Click(object sender, EventArgs e)
    {
        Response.Write ( "Hi,you have entered the word: " + TextBox1.Text);
    }

}



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.