//protected void BtnUpdate_Click(object sender, EventArgs e)
 //{
 //    bobject = new UserInformation();
 //    blogic = new BusinessLogic.BusinessLogic();
 //    bobject.Id = Convert.ToInt32(Request.QueryString["Id"]);
 //    bobject.Name = TxtName.Text;
 //    bobject.Email = TxtEmail.Text;
 //    bobject.Address = TxtAddress.Text;
 //    bobject.Gender = TxtGender.Text;
 //    bobject.Country = TxtCountry.Text;
 //    bobject.PhoneNumber = Convert.ToInt32(TxtPhone.Text);
 //    blogic.SaveEdit(bobject);
 //    BindData();
 //    ClearFeild();
 //}
 public void BindData()
 {
     bobject = new UserInformation();
     blogic = new BusinessLogic.BusinessLogic();
     List<UserInformation> lst = blogic.ShowData(bobject);
     grd_show.DataSource = lst;
     grd_show.DataBind();
 }