示例#1
0
 public void PopulateInProgressOrdersGridView()
 {
     OrderService os = new OrderService();
     int clientID = Convert.ToInt32(Session["UserID"]);
     this.GridViewInProgressOrders.DataSource = os.GetClientOrders(clientID);
     this.GridViewInProgressOrders.DataBind();
 }