asp.net中怎么把时间信息放到数据库中
3个回答
2012-07-13
展开全部
数据库加时间字段,类型设为Datetime(并可设默认值为getdate(),意味插入或修改数据的系统时间),对应asp.net中使用:
如果是输入的利用DateTime.Parse(“时间字符串")或Convert.ToDateTime(“时间字符串")
如果想设置默认时间可在数据库设置默认值或用DateTime.Now设置当前系统时间。
至于操作数据库的部分我在这里就不详细说啦!
楼主觉的满意就设为满意答案呗!
如果是输入的利用DateTime.Parse(“时间字符串")或Convert.ToDateTime(“时间字符串")
如果想设置默认时间可在数据库设置默认值或用DateTime.Now设置当前系统时间。
至于操作数据库的部分我在这里就不详细说啦!
楼主觉的满意就设为满意答案呗!
展开全部
1、DateTime 数字型
System.DateTime currentTime=new System.DateTime();
1.1 取当前年月日时分秒
currentTime=System.DateTime.Now;
1.2 取当前年
int 年=currentTime.Year;
1.3 取当前月
int 月=currentTime.Month;
1.4 取当前日
int 日=currentTime.Day;
1.5 取当前时
int 时=currentTime.Hour;
1.6 取当前分
int 分=currentTime.Minute;
1.7 取当前秒
int 秒=currentTime.Second;
1.8 取当前毫秒
int 毫秒=currentTime.Millisecond;
(变量可用中文)
System.DateTime currentTime=new System.DateTime();
1.1 取当前年月日时分秒
currentTime=System.DateTime.Now;
1.2 取当前年
int 年=currentTime.Year;
1.3 取当前月
int 月=currentTime.Month;
1.4 取当前日
int 日=currentTime.Day;
1.5 取当前时
int 时=currentTime.Hour;
1.6 取当前分
int 分=currentTime.Minute;
1.7 取当前秒
int 秒=currentTime.Second;
1.8 取当前毫秒
int 毫秒=currentTime.Millisecond;
(变量可用中文)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
字符串的也可以 输入时候写入时间的格式就好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询