Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Component Development Infrastructure Khung NET ASP.NET và. Cung cấp cho phía máy chủ lập trình với các cơ sở hạ tầng cần thiết cho phát triển thành phần. Bạn có thể nghĩ của một thành phần như một đơn vị chức năng thực hiện một API nổi tiếng. Một thành phần có thể có hoặc không có thể có một sự hiện diện hình ảnh trong giao diện người dùng của một ứng dụng. Ví dụ, một bộ định thời là một thành phần mà không làm cho đánh dấu hình ảnh trong một trang ASP.NET. GridView A, mặt khác,. | . . . 7 Component Development Infrastructure The ASP.NET and .NET Frameworks provide server-side programmers with the necessary infrastructure for component development. You can think of a component as a unit of functionality that implements a well-known API. A component may or may not have a visual presence in the user interface of an application. For example a timer is a component that does not render visual markup in an ASP.NET page. A Gridview on the other hand is a component that does render visual markup in a page. Thanks to the ASP.NET and .NET component development infrastructure you can develop components such as Gridview with minimal time and effort. The ASP.NET AJAX client-side framework provides client-side programmers with a componentdevelopment infrastructure that emulates its ASP.NET and .NET counterparts to enable you to develop client-side components with minimal time and effort. The ASP.NET AJAX component-development infrastructure consists of a set of well-defined interfaces and classes as discussed in this chapter. First this chapter presents the main interfaces that make up the ASP.NET AJAX componentdevelopment infrastructure. Then the chapter introduces two main classes of this infrastructure Component and -Application. Every ASP.NET AJAX component including your own custom components directly or indirectly derives from the Component base class. This base class defines the lifecycle that every component application must go through. A component lifecycle consists of well-defined phases as discussed in this chapter. Therefore deriving your custom component classes from the Component base class automatically enables your component to participate in a typical component lifecycle. Every ASP.NET AJAX application is represented by an instance of the -Application class. This instance is created by the ASP.NET AJAX framework and exposed through the Sys.Application variable. The -Application class defines the lifecycle that every ASP.NET AJAX .