Đang chuẩn bị liên kết để tải về tài liệu:
Wrox Professional Web Parts and Custom Controls with ASP.NET 2.0 phần 10

Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG

C# là nhánh phát triển theo hướng module và đơn giản hóa cua C++, công thêm một số ý tưởng từ ngôn ngữ khác. Trong C# mọi thứ thật sự là đối tượng: ngay cả những dạng cơ bản như int cũng có thể được đóng gói thành lớp đối tượng gốc. Không có sự kế thừa đa lớp; thay vì vậy, có một cơ chế đa giao tiếp (interface). C# có toán tử new, nhưng ko có toán tử delete: .NET framework đã xây dựng cơ chế thu dọn “rác” cho tất cả các ngôn ngữ lập trình trên. | Chapter 12 tc New System.Web.UI.WebControls.TableCell tc.Controls.Add lblNameLb tr.Cells.Add tc tc New System.Web.UI.WebControls.TableCell tc.Controls.Add lblName tr.Cells.Add tc tbl.Rows.Add tr In C System.Web.UI.WebControls.Table tbl new System.Web.UI.WebControls.Table System.Web.UI.WebControls.TableCell tc System.Web.UI.WebControls.TableRow tr tr new System.Web.UI.WebControls.TableRow tc new System.Web.UI.WebControls.TableCell tc.Controls.Add lblNameLb tr.Cells.Add tc tc new System.Web.UI.WebControls.TableCell tc.Controls.Add lblName tr.Cells.Add tc tbl.Rows.Add tr The final step is to add the Table rather than the individual controls to the Control s collection of the custom control as this Visual Basic 2005 code does Me.Controls.Add tbl In C this.Controls.Add tbl The result is shown in Figure 12-8. Figure 12-8 398 A Custom Control Case Study Rather than repeat this code over and over a smarter approach is to write a routine that when passed two labels and the table adds the labels to the Table in a new row. The Visual Basic version of that routine looks like this Private Function AddToTable ByVal Table As System.Web.UI.WebControls.Table _ ByVal Label As System.Web.UI.WebControls.Label _ ByVal Data As System.Web.UI.WebControls.Label As WebControls.Table Dim tc As System.Web.UI.WebControls.TableCell Dim tr As System.Web.UI.WebControls.TableRow tr New System.Web.UI.WebControls.TableRow tc New System.Web.UI.WebControls.TableCell tc.Controls.Add Label tr.Cells.Add tc tc New System.Web.UI.WebControls.TableCell tc.Controls.Add Data tr.Cells.Add tc Table.Rows.Add tr Return Table End Function In C private WebControls.Table AddToTable System.Web.UI.WebControls.Table Table System.Web.UI.WebControls.Label Label System.Web.UI.WebControls.Label Data System.Web.UI.WebControls.TableCell tc System.Web.UI.WebControls.TableRow tr tr new System.Web.UI.WebControls.TableRow tc new System.Web.UI.WebControls.TableCell tc.Controls.Add Label tr.Cells.Add tc tc new .

Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.