コード例 #1
0
ファイル: AdminListBase.cs プロジェクト: radtek/Portfolio
        /// <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();
        }