I have a demo scheduled with a client and i need a quick and dirty fix for now. I will find a more appropriate work around tomorrow but for the time being i need a way to force a post back, or refresh the page.
i tried:
Response.Redirect("");
but it brings me to a page that says "Object moved to here". 'here' is a hyperlink that brings me to the page with desired results but i wish to bypass this message.
Any ideas.
Take a look at ASP.NET AJAX Timer Control! http://www.asp.net/ajax/documentation/live/tutorials/IntroToTimerControl.aspx
Response.Redirect("default.aspx");
(or whatever the name of the current page is)
The server can not tell the client to reload.
You can use the html meta refresh:
but that will not do a proper post back i think.
Content is how many seconds the client waits to do the refresh.
Response.Redirect() is not the greatest because there is not state. It's a new request. if you want to keep state of all your controls then use the __doPostBack method which is added automatically by ASP when the page is rendered so it's accessible from client side:
you can do this:
or just call it from javascript:
__doPostBack('myElementId','');
Alternatively you can just use javascript code:
document.forms[0].submit();
Couldn't you just add a javascript block with
window.reload()
in it?Here is some useful info on how to do this correctly in Web Forms.
This also works and you won't need to worry about putting in the path.