public ActionResult MyAction(string button)
        {
            string words        = Request.Form["words"];
            string countedWords = UniqueCounter.countUnique(words);

            ViewBag.Message = countedWords;
            return(View());
        }
 public ActionResult Index()
 {
     UniqueCounter.countUnique("This is a kingsley kingsley");
     return(View());
 }