protected void btnSelect_Click(object sender, EventArgs e) { int proId = Convert.ToInt32(this.DDL_Pro.SelectedValue); if (proId > 0) { this.GridView1.DataSource = CloudServiceManager.GetAllCloudServiceListByProId(proId); this.GridView1.DataBind(); } else if (proId == 0) { this.GridView1.DataSource = CloudServiceManager.GetAllCloudServiceList(); this.GridView1.DataBind(); } }
private void BindClassGridView() { this.GridView1.DataSource = CloudServiceManager.GetAllCloudServiceList(); this.GridView1.DataBind(); }