示例#1
0
        public ActionResult Follow_List()
        {
            int           uid = Convert.ToInt32(Session["User_id"].ToString());
            FollowManager fm  = new FollowManager();
            var           da  = fm.FindByuid(uid);

            return(PartialView(da));
        }