Advertisement
Guest User

Untitled

a guest
Feb 27th, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. public class HomeController : Controller
  2. {
  3.     public ActionResult Index()
  4.     {
  5.         return View();
  6.     }
  7.  
  8.     public ActionResult Slow()
  9.     {
  10.         string ret = "started at " + DateTime.Now.ToString("HH:mm:ss") + "<br/>";
  11.  
  12.         System.Threading.Thread.Sleep(5000);
  13.  
  14.         ret += "finished at " + DateTime.Now.ToString("HH:mm:ss") + "<br/>";
  15.  
  16.         return Content(ret);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement