在asp.net c#中使用主线程并行处理Timer Tick事件

时间:2013-03-05 07:01:56

标签: c# asp.net performance timer

我有这个功能,我试图将定时器事件作为单独的线程调用,但当我点击页面中的任何按钮或在asp.net页面做任何事情时,定时器停止一秒。

请帮助如何在没有页面中另一个控件效果的情况下运行paralley,因为计时器应该每秒运行一次并且它不应该在ui中停止。

Thread obj = new Thread(new ThreadStart(timer));
obj.Start();
obj.IsBackground = true;

protected void timer()
{
    Timer1.Interval = 1000;
    Timer1.Tick += new EventHandler<EventArgs>(Timer1_Tick);
    Timer1.Enabled = true;
}

public void TimerProc(object state)
        {
            fromTime = DateTime.Parse(FromTimeTextBox1.Text);
            tillTime = DateTime.Parse(TillTimeTextBox1.Text);
            DateTime currDateTime = System.DateTime.Now;
            TimeSpan interval = tillTime - currDateTime;
            if (tillTime <= currDateTime)
            {
                ExamOverPanel1.Visible = true;
                QuestionPanel.Visible = false;
                ListBox2.Visible = false;
                StatusPanel1.Visible = false;
                VisitLaterLabel.Visible = false;
            }
            else
            {
                minLabel.Text = string.Format("{0:00}:{1:00}:{2:00}", (int)interval.TotalHours, interval.Minutes, interval.Seconds);
            }
        }

3 个答案:

答案 0 :(得分:1)

您的Timer1对象是什么类?

是吗

System.Threading.Timer

System.Timers.Timer

System.Windows.Forms.Timer

System.Web.UI.Timer

?最后两个不是真正合适的计时器,而是到达你的消息队列....

所以我建议您检查命名空间引用 - 我在您的方案中的建议是使用System.Threading.Timer类。

答案 1 :(得分:0)

我猜您正在使用System.Web.UI.Timer类,该类用于定期更新UpdatePanel或整个页面。此计时器不是那么准确,因为它完全在客户端浏览器上运行(使用JavaScript window.setTimeout函数)并向服务器发送ajax请求。如果要在服务器上定期执行某些操作,可以使用在服务器上自己的线程中调用的System.Threading.Timer个对象:

public void InitTimer()
{
    System.Threading.Timer timer = new System.Threading.Timer(TimerProc);
    timer.Change(1000, 1000); // Start after 1 second, repeat every 1 seconds
}

public void TimerProc(object state)
{
    // perform the operation
}

但是如果要在服务器上执行某些操作后更新页面,则仍应使用System.Web.UI.Timer。您还可以使用线程计时器混合两者,以高精度执行工作,并使用Web计时器更新页面。

请参阅System.Web.UI.Timer class的示例部分以获取示例用法。

答案 2 :(得分:0)

我找到的最好方法是使用Javascript进行时间显示。并在后台运行C#计时器,不会更新UI。

<script type="text/javascript">

        var serverDateTime = new Date('<%= DateTime.Now.ToString() %>');
        // var dif = serverDateTime - new Date();

        function updateTime() {
            var label = document.getElementById("timelabel");
            if (label) {

                var time = (new Date());
                label.innerHTML = time;
            }
        }
        updateTime();
        window.setInterval(updateTime, 1000);
</script>

 <script type="text/javascript">
    window.onload = WindowLoad;
    function WindowLoad(event) {

        ActivateCountDown("CountDownPanel", <%=GetTotalSec() %>);
    }
//GetTotalSec() is c# function which return some value
    </script>

<span id="CountDownPanel"></span> //div to display time

所有其他内容都适用于timer1_tick函数,无论UI如何。