Skip to content

Instantly share code, notes, and snippets.

View regifraga's full-sized avatar

Regivaldo Fraga do Nascimento regifraga

  • Brazil
View GitHub Profile
@KyleMit
KyleMit / HomeController.cs
Last active February 2, 2023 00:26
Heartbeat to Keep Session Alive in ASP.NET MVC
[HttpPost]
public JsonResult KeepSessionAlive()
{
return new JsonResult {Data = "Success"};
}