Ejemplo n.º 1
0
 private void GetAllVendorsForAParticularCategory()
 {
     if (hdnCategoryId.Value.Trim() != "")
     {
         SupplierTransaction sup = new SupplierTransaction();
         hdnVendorsForACategoryId.Value = sup.GetSuppliersByCategoryId(connstring, hdnCategoryId.Value.Trim(), "");
     }
 }
Ejemplo n.º 2
0
 private void GetAllVendorsForAParticularCategory()
 {
     if (hdnCategoryId.Value.Trim() != "")
     {
         SupplierTransaction sup = new SupplierTransaction();
         hdnVendorsForACategoryId.Value = sup.GetSuppliersByCategoryId(connstring, hdnCategoryId.Value.Trim(), "");
     }
     else
     {
         Response.Redirect("createauction.aspx");
     }
 }