具有时间间隔的方法调用(asp.net c#)
您好,我想调用一种基于一个时间跨度的方法,
这是我的踪迹
protected void binddata(object sender, EventArgs e) { // 我的逻辑在这里 现在
我想
使用 c# 和 asp.net 每 5 分钟调用一次此方法,如何实现此目的?
谢谢
Hi I want to call a method based on one time span
here is my trail
protected void binddata(object sender, EventArgs e)
{
// my logic here
}
Now I want to call this method for every 5 mins
using c# and asp.net how can i achieve this?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您在 ASP.Net ajax 控件中有一个计时器控件。
http://msdn.microsoft.com/fr- fr/library/system.web.ui.timer.aspx
它提供了来自 msdn 的 postbak
示例:
希望有所帮助。
you have a timer control in ASP.Net ajax controls.
http://msdn.microsoft.com/fr-fr/library/system.web.ui.timer.aspx
It provides a postbak
exemple from msdn:
Hope this help.
使用 System.Threading.Timer - http://msdn.microsoft .com/en-us/library/system.threading.timer.aspx。
Using System.Threading.Timer - http://msdn.microsoft.com/en-us/library/system.threading.timer.aspx.