如何将日期结果存储到mvc2中从TimeZone获取的数据库中

时间:2013-09-14 09:05:24

标签: datetime asp.net-mvc-2 timezone

我在mvc2中使用 TimeZoneInfo 转换了日期时间。

在我的控制器中:

DateTime updatedDate = DateTime.Now;
var timeZone = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(updatedDate, TimeZoneInfo.Local.Id, "India Standard Time").ToString();

我想将值 timeZone 分配到

item.updateddate=timeZone;

但它显示错误。如何确定价值观?我是新来的......

1 个答案:

答案 0 :(得分:0)

我假设您的错误是因为您尝试将字符串转换为日期时间。你需要做的是使用像DateTime.ParseExact。

这样的东西

示例here