问题描述
ASP.NET2.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)多次
时间: 2024-09-27 11:19:37