Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have a master page and a child page and I want to refresh child page after 1 minutes in VS 2008.
Please sort out my problem.

thanking you.
mohd wasif
Posted
Comments
raju melveetilpurayil 13-Jan-11 7:51am    
try with timercontrol or javascript

On Code Behind use this..
Response.AppendHeader("refresh", "60");
 
Share this answer
 
v2
Comments
Toniyo Jackson 13-Jan-11 8:06am    
Good answer. But he need for 1 mins. You have given time period as 1. I changed to 60.
Kasson 13-Jan-11 8:06am    
Thanks Toniyo
fjdiewornncalwe 13-Jan-11 10:24am    
+5. This is by far the simplest, least invasive way to do this.
Kasson 13-Jan-11 22:39pm    
Thanks Marcus.
A simple google will give you a lot..

refresh an UpdatePanel control at a timed interval[^]
 
Share this answer
 
Use Javascript (A .NET timer won't work since it is on the server and the process will die when the page is fully loaded at the client).
There is a tutorial on Javascript timers here[^] which may help.
 
Share this answer
 
This might[^] help you.
[Excellent tips by MS MVP for autorefresh Page]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900