Beispiel #1
0
 protected void ReminderTreatment()
 {
     Garge garge = new Garge(Convert.ToInt32(Session["UserID"]));
     List <CustomerModel> list = garge.getAllCustomers();
     //ShwoCustomer.DataSource = list;
     //ShwoCustomer.DataBind();
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack & Session["UserID"] != null)
     {
         Garge garge = new Garge(Convert.ToInt32(Session["UserID"]));
         List <CustomerModel> list = garge.getAllCustomers();
         ShwoCustomer.DataSource = list;
         ShwoCustomer.DataBind();
     }
 }