本文介绍了如何在标签中显示当前时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

我的主页上有一个这个div

Hi guys

I have a this div in my master page

<div id="navbar2">
<ul>
<li><asp:Label ID="lblTime" runat="server" ></li>
</ul>
</div>



现在,我有了下面的代码来获取当前时间并将其放在标签中



Now I have the code below to get current time and put it in my label

protected void Page_Load(object sender, EventArgs e)
       {
           if (Page.IsPostBack)
           {
               DateTime dateTime = DateTime.Now;
               lblTime.Text = dateTime.ToShortTimeString();
               System.Windows.Forms.MessageBox.Show(dateTime.ToShortTimeString());
           }
       }


我目前收到一条错误消息,提示已使用相同的参数类型对名为"Page_Load"的成员进行了定义"
另外,我的当前时间在标签


I currently get an error saying "Already difines a member called ''Page_Load'' with the same parameter type"
Also my current time is not visible inside the label

推荐答案



DateTime.Now.Hour+":"+DateTime.Now.Minute


这篇关于如何在标签中显示当前时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-21 01:44