Exemplo n.º 1
0
        public ActionResult MyPosts(string id)
        {
            grabFromDB    grab    = new grabFromDB();
            List <Result> results = grab.getUserPosts(Globals.getCurrentUserEmail());

            ViewBag.PostList = results;

            return(View("MyPosts"));
        }