How do I refresh a page in ASP.NET? (Let it reload itself by code)
I\'d rather not use Response.Redirect() because I don\'t know if the page I will be on, as it\'s i
The only correct way that I could do page refresh was through JavaScript, many of top .NET answers failed for me.
Response.Write("");
Put the above code in button click event or anywhere you want to force page refresh.