如何在detailview asp.net中自动显示当前日期

时间:2013-08-22 06:50:07

标签: asp.net

我正在使用asp.net,我正在从数据库创建详细信息视图。我创建的数据库有一个列,我希望在编辑时设置自动显示当前或像使用vb.net代码等计时器一样插入

lblClock.Text = TimeOfDay


我来自asp.net的示例来源:

<asp:TemplateField HeaderText="Time Out" SortExpression="TIME_OUT">
    <EditItemTemplate>
        <asp:TextBox ID="TextBox9" runat="server" Text='<%# Bind("TIME_OUT") %>'></asp:TextBox>
    </EditItemTemplate>
    <InsertItemTemplate>
        <asp:TextBox ID="TextBox10" runat="server" Text='<%# Bind("TIME_OUT") %>'></asp:TextBox>
    </InsertItemTemplate>
    <ItemTemplate>
        <asp:Label ID="Label10" runat="server" Text='<%# Bind("TIME_OUT") %>'></asp:Label>
    </ItemTemplate>

我想要的是当我点击编辑按钮时它会自动显示当前时间,然后我只需点击更新。

2 个答案:

答案 0 :(得分:0)

试试这个.......... TextBox1.Text = DateTime.Now.ToString("HH:mm");

答案 1 :(得分:0)

在您的页面加载事件中添加此代码

lblClock.Text = DateTime.Now.ToString();