Just another tech site

C# ASP.NET ReloadPage


This code will force the page to reload by redirect

public static void ReloadPage()
{
      HttpContext.Current.Response.Redirect(HttpContext.Current.Request.RawUrl, true);
}

Leave a comment