1、将“2013-4-16” 转换为UTC时间:2013-4-16 00:00:00 服务器部署在不同的地方,因此要考虑时区。
2、GridView 只合并最后2行的表头,代码:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.Header) { TableCellCollection tcHeader = e.Row.Cells; tcHeader[4].ColumnSpan = 2; } }