Refresh Page C# ASP.NET
I think this should do the trick (untested):
Page.Response.Redirect(Page.Request.Url.ToString(), true);
Careful with rewriting URLs, though. I'm using this, so it keeps URLs rewritten.
Response.Redirect(Request.RawUrl);
Response.Redirect(Request.Url.ToString());