示例#1
0
 public ActionResult Save(FormCollection fc)
 {
     if (fc["parentid"] == null || fc["parentid"] == "")
     {
         Account_parent t   = new Account_parent();
         Boolean        res = t.InsertAccount_parent(fc);
         if (res)
         {
             return(Content("Record Inserted Successfully"));
         }
         else
         {
             return(Content("Error Adding Record Try Again"));
         }
     }
     else
     {
         Account_parent t   = new Account_parent();
         Boolean        res = t.UpdateAccount_parent(fc);
         if (res)
         {
             return(Content("Record Edited Successfully"));
         }
         else
         {
             return(Content("Error Editing Record Try Again"));
         }
     }
     //return PartialView("SaveRec");
 }
示例#2
0
        public ActionResult Account_parentdelete(int id)
        {
            Account_parent t   = new Account_parent();
            Boolean        res = t.DeleteRecord(id);

            if (res)
            {
                return(Content("Record Deleted Successfully"));
            }
            else
            {
                return(Content("Error Deleting Record Try Again"));
            }
        }
示例#3
0
        public ActionResult Account_parentlist()
        {
            int pageno = Convert.ToInt16(Request["page"]);

            GenHelper.pager gen = new GenHelper.pager();
            Account_parent  obj = new Account_parent();
            DataSet         ds  = new DataSet();
            DataTable       dt  = obj.GetOrderedRecords(pageno, PerPageRec, "parentid desc");
            Int32           cnt = obj.GetOrderedRecordsCount("parentid desc");

            gen.PagedList(pageno, cnt, PerPageRec, "Account_parent", "Account_parentlist");
            ViewBag.pageLinks        = gen.PageNos;
            ViewData["TableHeading"] = "List Of Account_parent";
            ViewData["addlink"]      = "Account_parentAdd";
            dt.TableName             = "Account_parent";
            ds.Tables.Add(dt);
            return(View("listAccount_parent", ds));
        }
示例#4
0
        public JsonResult IsAvailable(String parentname)
        {
            Account_parent d = new Account_parent();

            return(Json(d.IsAvailable(parentname), JsonRequestBehavior.AllowGet));
        }