In web application, before redirecting to another page i want to display message! after few seconds it redirect to that page. For that i write code in scriptmanager like this..
ScriptManager.RegisterStartupScript(this, GetType(), "mess", "<script> window.setTimeout('window.location='http://www.stackoverflow.com'; ',4000) </script>", false);
but it is not redirecting , can you help me , thank you.