About the author

Vijay Kodali
E-mail me Send mail

Recent comments

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2024

Auto refresh a web form asp.net

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..

[code:c#]

Response.AppendHeader("Refresh", "180");

[/code]


Posted by vijay on Sunday, October 14, 2007 3:24 PM
Permalink | Comments (1) | Post RSSRSS comment feed

Comments

Anuva Pramanik United States

Thursday, July 28, 2011 12:22 AM

Anuva Pramanik

how can I refresh the page after clicking a button in web form in asp.net using vb.net

Add comment


(Will show your Gravatar icon)

  Country flag

biuquote
  • Comment
  • Preview
Loading