Guest User

Untitled

a guest
Dec 10th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class TimeController : Controller
  2. {
  3. [ChildActionOnly]
  4. [OutputCache(Duration = 600)]
  5. public PartialViewResult Index()
  6. {
  7. ViewBag.CurrentTime = DateTime.Now;
  8. return PartialView();
  9. }
  10. }
Add Comment
Please, Sign In to add comment