//Bind Grid public void BindGridData() { DataSet ds = new DataSet(); MyService.CustomerServiceClient client = new MyService.CustomerServiceClient(); ds = client.GetCustomerRecords(); grdEmployees.DataSource = ds; grdEmployees.DataBind(); }
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { DataSet ds = new DataSet(); MyService.CustomerServiceClient client = new MyService.CustomerServiceClient(); ds = client.GetCustomerRecords(); grdEmployees.DataSource = ds; grdEmployees.DataBind(); } }