protected void BindData()
 {
     ProductTable.DataSource = create.RefreshData();
     ProductTable.DataBind();
 }
Exemplo n.º 2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     ProductTable.DataSource = ProductController.getAllProducts();
     ProductTable.DataBind();
 }