飞利浦·斯塔克|dotnet代码判断字段数据是否为null

飞利浦·斯塔克|dotnet代码判断字段数据是否为null


dotnet代码判断字段数据是否为null
<%# Eval(\"da_alt_date\")==DBNull.Value?\"\":Convert.ToDateTime(Eval(\"da_alt_date\")).ToShortDateString()%>
if (String.IsNullOrEmpty(Convert.ToString(row[\"da_apply_date\"
)))
{
newRow[\"da_apply_date\"
= \"\";

else
{
if (Convert.ToString(row[\"da_apply_date\"
) == \"1900-1-1 0:00:00\")
{
newRow[\"da_apply_date\"
= \"\";

else
{
newRow[\"da_apply_date\"
= Convert.ToDateTime(row[\"da_apply_date\"
).ToShortDateString();

【飞利浦·斯塔克|dotnet代码判断字段数据是否为null】