TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Automatioc refresh Asp.Net Page
Guest User
Jun 24, 2010
6.4
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
Automatic refresh of Asp.Net web page in server side.
Check out below code which will Referesh the webpage after every 10 seconds:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
//page will be refereshed at a interval of 10 sec
Response.AddHeader("Refresh", "10");
}
}
Automatioc refresh Asp.Net Page
Next Recommended Reading
Auto Refresh a Partial View of a Page in MVC