protected void btnSaveCetification_Click(object sender, ImageClickEventArgs e)
 {
     ProductManager productManager = new ProductManager(this);
     productManager.InsertProductCertificate(productId, new ProductCertificate()
     {
         Name = txtCertification.Text
     });
     DataBind();
     txtCertification.Text = String.Empty;
 }