示例#1
0
        /// <summary>
        /// 删除
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        private string Delete(HttpContext context)
        {
            string ids = context.Request["ids"];

            if (bllKeyValueData.Delete(new KeyVauleDataInfo(), string.Format(" AutoId in({0}) And WebsiteOwner='{1}'", ids, bllKeyValueData.WebsiteOwner)) == ids.Split(',').Length)
            {
                resp.isSuccess = true;
            }
            return(Common.JSONHelper.ObjectToJson(resp));
        }