Some times we need to auto-refresh page after few seconds. you can do it with Meta Refresh tags

<head><meta http-equiv=”Refresh” content=”180″ /></head>Where content ‘180′ is the number of seconds.

Another approach is by addding HTTP header..

Response.AppendHeader(“Refresh”, “180″);
–From VijayKodali.com