Siêu thị PDFTải ngay đi em, trời tối mất

Thư viện tri thức trực tuyến

Kho tài liệu với 50,000+ tài liệu học thuật

© 2023 Siêu thị PDF - Kho tài liệu học thuật hàng đầu Việt Nam

Tài liệu Binding Simple Data to Web Forms Controls pdf
MIỄN PHÍ
Số trang
3
Kích thước
24.1 KB
Định dạng
PDF
Lượt xem
1303

Tài liệu Binding Simple Data to Web Forms Controls pdf

Nội dung xem thử

Mô tả chi tiết

[ Team LiB ]

Recipe 7.1 Binding Simple Data to Web Forms Controls

Problem

You need to bind a field of data to a server-side control.

Solution

Use the DataBind( ) method.

The Web Forms page sample code displays the company name for the CustomerID

specified by assigning the method GetCompanyName( ), which is defined in the code￾behind file, to the Text property of TextBox control companyNameTextBox. The code

for the Web Forms page is shown in Example 7-1.

Example 7-1. File: ADOCookbookCS0701.aspx

<asp:TextBox id="companyNameTextBox" style="Z-INDEX: 103; LEFT: 136px;

POSITION: absolute; TOP: 128px" runat="server" ReadOnly="True"

Width="280px" Text="<%# GetCompanyName(customerIdTextBox.Text) %>">

</asp:TextBox>

The code-behind contains one event and one method:

Page.Load

Binds data from the source—in this case the GetCompanyName( ) method—to the

companyNameTextBox server control.

GetCompanyName( )

This method retrieves and returns the company name for a specified customer ID.

The C# code for the code-behind is shown in Example 7-2.

Example 7-2. File: ADOCookbookCS0701.aspx.cs

// Namespaces, variables, and constants

using System;

using System.Configuration;

using System.Data;

Tải ngay đi em, còn do dự, trời tối mất!