Datahighway Posted October 18, 2003 Posted October 18, 2003 Hi All, How can I refresh my Asp.Net Webpage. I want to refresh my weppage all 60 sec. Must i use a timer ? Thanks and regards Datahighway Quote
WebJumper Posted October 18, 2003 Posted October 18, 2003 you have to use javascript. <script language="javascript"> function jsTimer() { window.setTimeout("jsReload();", 60000); } function jsReload() { window.location = window.location; } </script> <body onload="jsTimer();"> Regards, WebJumper Quote
Datahighway Posted October 18, 2003 Author Posted October 18, 2003 Hi Webjumper, you Solution doesn't work. I got a error message. Need object in row 0 Any Idee ? Regards Datahighway Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.