public ActionResult AddWords()
{
var wordsModel = HttpContext.Request.Form["words"];
var wordArray = new JavaScriptSerializer().Deserialize<WordModel[]>(wordsModel);
}
$.post("http://localhost:1901/Test/AddWords",{words:JSON.stringify(words)},function(data){});