TimeSpan转换失败

时间:2012-06-06 08:38:21

标签: c# asp.net visual-studio-2010 sql-server-2008

在我的TimeIn.aspx文件中,我正在使用以下代码显示时钟:

<div>
    <div>
        <asp:ScriptManager runat="server" ID="ScriptManager1" />
        <br />

        <asp:UpdatePanel runat="server" ID="UpdatePanel1">
            <ContentTemplate>
                <asp:Label runat="server" ID="Label4" Text="Current Time: "/>
                <asp:Label runat="server" ID="Label2" />
            </ContentTemplate>
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
            </Triggers>
        </asp:UpdatePanel>
        <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Interval="1000" />
    </div>
    <br />

    <br />
    <asp:Button ID="Button1" runat="server" Text="Check In" OnClick="CheckIn" />
</div>

时钟工作正常。然后在TimeIn.aspx.cs文件中,我编写了CheckIn方法:

protected void CheckIn(object sender, EventArgs e)
{
    TimeSpan currtime = TimeSpan.Parse(Label2.Text);
    int eid = Convert.ToInt32(Session["EID"]);
    DBClient = new DBConnection();
    DBClient.CheckIn(eid, currtime, DateTime.Now.Date.ToString());
    Response.Redirect("ECheckin.aspx");
}

在数据库中,CheckinTime列的数据类型为Time(7) 当CheckIn事件触发时,它会在TimeSpan.Parse的第一行上发生异常,因为Label2.Text具有添加时间格式的时间(AM / PM)。
Label2.Text的示例值为:1:41:28 PM
什么是处理这种情况的最佳解决方案?我真的想在sql server中使用Time数据类型,因为稍后我将不得不在时间字段上执行计算。

2 个答案:

答案 0 :(得分:3)

Timespan基本上是两次之间的差异。

或者我们可以说一个秒表,其中秒表中的值是从时钟开始到时钟停止时已经过去的时间。

与AM或PM无关。

Timespan = Date1 - Date2

我猜你得到的错误是FormatException

您的标签文字格式为DateTime,这就是AM / PM。

的原因

而不是Timespan尝试使用DateTime实例

DateTime currtime = DateTime.Parse(Label2.Text);

答案 1 :(得分:0)

您可以将时间间隔添加到日期时间,如下所示

  TimeSpan timespan = new TimeSpan(03,00,00);
    DateTime time = DateTime.Today.Add(timespan);
    string displayTime = time.ToString("hh:mm tt");

而不是03,00,00,您可以直接传递您的时间跨度变量