摘要:
function InitDeadLine() { var t = new Date(); var t_s = t.getTime(); t.setTime( t_s + 1000 * 60 * 60 * 24 * 10 ); var y = t.getFullYear(); var m = t.g 阅读全文
摘要:
protected void RemoveEmpty(DataTable dt) { List<DataRow> removelist = new List<DataRow>(); for (int i = 0; i < dt.Rows.Count; i++) { bool IsNull = tru 阅读全文
摘要:
public bool HasRepeatData(DataTable dt,string[] colName) { bool flag=false; DataView myDataView = new DataView(dt); if (myDataView.ToTable(true, colNa 阅读全文