使用计时器显示文本3秒?

时间:2011-05-08 15:59:16

标签: c# asp.net

是否可以使用计时器在标签中显示文字3秒钟? F.E.当你保存了一些东西并且成功时,你会收到一条短信“成功!”持续3秒钟,然后返回原始页面。

任何人都知道如何使用标签或信息框进行此操作?

2 个答案:

答案 0 :(得分:5)

是的,有可能......

您可以在将标签文本设置为“succcess”的位置启动计时器,并在3秒后将其设置为勾选,然后在timer_ticks事件中,您可以重定向到所需的页面。

编辑:启动计时器的代码 - 这是一个简单的窗体,有一个按钮和一个标签

public partial class Form1 : Form
{
    //Create the timer
    System.Windows.Forms.Timer myTimer = new System.Windows.Forms.Timer();

    public Form1()
    {
        InitializeComponent();
        //Set the timer tick event
        myTimer.Tick += new System.EventHandler(myTimer_Tick);
    }

    private void button1_Click(object sender, EventArgs e)
    {
        //Set the timer tick interval time in milliseconds
        myTimer.Interval = 1000;
        //Start timer
        myTimer.Start();
    }

    //Timer tick event handler
    private void myTimer_Tick(object sender, System.EventArgs e)
    {
        this.label1.Text = "Successful";
        //Stop the timer - if required
        myTimer.Stop();
    }
}

答案 1 :(得分:2)

确定,这是可能的。你想要在客户端使用javascript / jquery来做这件事,以避免页面刷新,我在想。 here is a link如何在计时器上运行javascript。