Is there a Page.Refresh type of command to refresh a page?
I don\'t want to redirect to the page or refresh in JavaScript.
You shouldn't use:
Page.Response.Redirect(Page.Request.Url.ToString(), true);
because this might cause a runtime error.
A better approach is:
Page.Response.Redirect(Page.Request.Url.ToString(), false); Context.ApplicationInstance.CompleteRequest();