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
There are various method to refresh the page in asp.net like...
Java Script
function reloadPage() { window.location.reload() }
Code Behind
Response.Redirect(Request.RawUrl)
Meta Tag
Page Redirection
Response.Redirect("~/default.aspx"); // Or whatever your page url