コード例 #1
0
ファイル: AddTypeName.ashx.cs プロジェクト: MyQueen123/Zhang
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string        typeName = context.Request["typeName"];
            CategoriesBll Bll      = new CategoriesBll();
            Categories    ca       = new Categories();

            ca.Name = typeName;
            int caa = Bll.Add(ca);

            if (caa > 0)
            {
                context.Response.Write("ok");
            }
        }
コード例 #2
0
        public string AddNewCategory(string catName)
        {
            var id = CategoriesBll.Add(catName);

            return(id);
        }