public partial class Listing16_3 : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
if (!this.IsPostBack) {
NorthwindDataContext dc = new NorthwindDataContext();
customersList.DataSource = dc.Customers;
customersList.DataBind();
}
}
}
