Ejemplo n.º 1
0
 protected void lbtnRemove_Click(object sender, EventArgs e)
 {
     isReset = true;
     try
     {
         serviceTypeMgr.DeleteServiceType(this.hiCheckedIds.Value);
     }
     catch (Exception ex)
     {
         PageCommon.AlertMsg(this, "Failed to remove the selected Service Type(s).");
         LPLog.LogMessage(LogType.Logerror, "Failed to remove the selected Service Type(s), exception: " + ex.Message);
     }
     BindGrid();
 }