Exemple #1
0
 private void Bind()
 {
     B_User bll = new B_User();
     DataView dv = bll.GetUserInfo();
     this.Egv.DataSource = dv;
     this.Egv.DataKeyNames = new string[] { "UserID" };
     this.Egv.DataBind();
 }