请教:数据库字段类型为datatime,请问在.net里怎样转换为datetime类型来插入数据库?
Posted on 2007-08-17 14:24 (NineTyNine) 阅读(1620) 评论(8) 编辑 收藏 举报try
{ DateTime AssetsPurchaseTime = new DateTime();
AssetsPurchaseTime = Convert.ToDateTime(this.ST_PurchaseTime.Value);
}
catch
{
Page.RegisterStartupScript("",NN.JSOnlyOut("资产购置时间格式不正确,应为(0000-00-00)请您重新填写。"));
}
这么做,总是catch,请问怎么正确的转换为日期类型?{ DateTime AssetsPurchaseTime = new DateTime();
AssetsPurchaseTime = Convert.ToDateTime(this.ST_PurchaseTime.Value);
}
catch
{
Page.RegisterStartupScript("",NN.JSOnlyOut("资产购置时间格式不正确,应为(0000-00-00)请您重新填写。"));
}
我需要的是2007-10-10,不需要时间。