我使用四个span
元素在四个角上绘制了一个网格。 Plunker代码为here。
现在,我喜欢在水平条上绘制垂直条。比如,必须在黑色和绿色条上方绘制黄色条,我的意思是网格相交区域必须为黄色。同样,棕色条必须在绿色条上方。
我怎样才能实现它?
答案 0 :(得分:1)
简单地添加
DateTime chequeDate;
var value = (object)DBNull.Value;
if (DateTime.TryParseExact(txtmaskchequedate.Text, "dd/MM/yyyy", null, System.Globalization.DateTimeStyles.None, out chequeDate))
{
value = chequeDate;
}
cmd.Parameters.AddWithValue("@Cheque_Date", value);
你的代码应该做的诀窍