H5 SSE

  • html


  
    
    服务器推送时间
    
  
  
    
[TIME]

  • C# 代码
 public ActionResult Index()
        {
            ViewBag.Title = "Home Page";

            return View();
        }

        public void Data()
        {
            HttpContext.Response.ContentType = "text/event-stream";
            HttpContext.Response.CacheControl = "no-cache";
            HttpContext.Response.Write("data:" + DateTime.Now + "\n\n");
            HttpContext.Response.Flush();
        }
··· 

你可能感兴趣的:(H5 SSE)