public ActionResult Page(string ids) { Advertisement aModel = new Advertisement(); Session["AdverId"] = null; List <Advertisement> adver = aModel.AdvertisementId(Convert.ToInt32(ids)); Session["AdverId"] = adver; Comment cModel = new Comment(); List <Comment> cList = cModel.CommentId(Convert.ToInt32(ids)); ViewBag.commentList = cList; return(View("Page")); }