求让ASP.NET 2.0 页面自动定时重新加载的办法!
ASP.NET 2.0 页面,要求能按页面上用户在下拉框内选择的时间间隔,定时页面重新加载。 --------------------编程问答-------------------- <script>window.setTimeout("window.location.href='xxx.aspx'",1000)
</script> --------------------编程问答-------------------- 会用到Session+Thread
没做过,仅供参 --------------------编程问答-------------------- 1楼的方法是客户端。
要在服务器端可以用Timer --------------------编程问答-------------------- 3楼能给个例子吗? --------------------编程问答-------------------- setTimeout("window.location.href='xxx.aspx'",1000)重新加载一次;
setInterval("window.location.href='xxx.aspx'",1000)多次
补充:.NET技术 , ASP.NET