I want to redirect to a new page, but I'd like to show a message and have a small waiting period so users can read it:I know I can do this: \[code\]<script runat="server"> protected override void OnLoad(EventArgs e) { Response.Redirect("new.aspx"); base.OnLoad(e); } </script>\[/code\]But How can I show the message and wait?Thanks.