public ActionResult SavePost(string content)
        {
            Posts posts = new Posts();

            posts.SessionUser = (users1)Session["Users"];
            posts.AddPorst(content);

            return(View());
        }