protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         CustomerMethods cm = new CustomerMethods();
         GridView1.DataSource = cm.ViewAccount();
         GridView1.DataBind();
     }
 }