本文介绍了3分钟后,如何使用计时器控制到我的网页.它会自动刷新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,
我想每3分钟对我的网页使用一个计时器控件.该页面将自动刷新.或者有什么方法可以让我在3分钟后刷新页面.
请帮帮我.
谢谢.

Hello,
I want To use a timer control to my web page that each 3 min. the page will be refresh automatically. Or is there any way that I can refresh my page after 3 min.
Please help me.
thanks.

推荐答案

<asp:scriptmanager id="ScriptManager1" runat="server" >
<asp:timer id="Timer1" interval="xxx" runat="server" >



间隔(XXX)以毫秒为单位.在3分钟内,其180000



Interval(XXX) is in milliseconds .for 3 minutes its 180000


Response.Redirect(Request.RawUrl); 


<head>
    <meta http-equiv="refresh" content="180;url=test.aspx" />
</head>



test.aspx 更改为要从客户端每3分钟刷新一次的Web窗体.

希望对您有帮助



Change the test.aspx to the webform that you want to be refreshed every 3 minutes from the client side.

Hope It Helps


这篇关于3分钟后,如何使用计时器控制到我的网页.它会自动刷新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 08:58