Exemplo n.º 1
0
        public void DelTableAttribute(string key)
        {
            bool judge = bll.DelTableAttributeByDigital(key, tableName, "ID_KEY");

            if (judge)
            {
                count = 1;
            }
            object obj = new
            {
                count = count
            };

            string result = JsonConvert.SerializeObject(obj);

            Response.Write(result);
            Response.End();
        }