m-u
9/19/2013 - 12:39 PM

Redirect the current request back to the current page

Redirect the current request back to the current page

/// <summary>
/// Redirect the current request back to the current page = full page reload
/// </summary>
public static void RedirectSelf(this HttpResponse response)
{
    response.Redirect(HttpContext.Current.Request.RawUrl);
}