Guest User

Untitled

a guest
May 24th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public ActionResult NewsFeed()
  2. {
  3. Models.Diry dir = new Models.Diry();
  4. DAC.UserAuth u = new DAC.UserAuth();
  5. ViewBag.dirs = u.fetchDiaries();
  6.  
  7. return View();
  8. }
  9.  
  10. @{ foreach (var tmp in ViewBag.dirs){
  11. <div class="post-text">
  12. <p>@tmp.content</p>
  13. </div>
  14. }
  15. }
Add Comment
Please, Sign In to add comment