示例#1
0
        /// <summary>
        /// 删除记录
        /// </summary>
        /// <param name="strTable">表</param>
        /// <param name="strKey">主键</param>
        /// <param name="strId">值</param>
        protected void DeleteById(string strTable, string strKey, int strId)
        {
            CommonProcess cp = new CommonProcess();

            cp.DeleteById(strTable, strKey, strId);
            getData();
        }