public ActionResult VideoCategoryInsert(FormCollection collection) { VideoCategory d = new VideoCategory(); d.CategoryName = collection["CategoryName"]; d.insert(); return(RedirectToAction("VideoCategoryList")); }