コード例 #1
0
 // delete a product from the catalog
 protected void deleteButton_Click(object sender, EventArgs e)
 {
     // Delete the product from the catalog
     CatalogBLO.DeleteProduct(currentProductId);
     // Need to go back to the categories page now
     Response.Redirect(Request.ApplicationPath + "/CatalogAdmin.aspx" +
                       "?DepartmentID=" + currentDepartmentId +
                       "&CategoryID=" + currentCategoryId);
 }