我得到了1行3列(日期,時間,什麼)的表,我想在我的數據源中的3列(時間,什麼)中的2我該怎麼做?如何將數據綁定到數據源?
var table = (from r in socialEvents.AsEnumerable()
where r.Field<DateTime>("Date") >= Calendar1.SelectedDate.Date &&
r.Field<DateTime>("Date") <= Calendar1.SelectedDate.AddDays(1)
select r).CopyToDataTable();
if (table.Rows.Count > 0)
{
DataGrid1.Visible = true;
DataGrid1.DataSource = table;
DataGrid1.DataBind();
}
指定欄目,然後我看到5列(時間,內容,日期,時間,什麼) – 2013-02-27 13:19:11
確保AutoGenerateColumns =「false」 – happygilmore 2013-02-27 13:27:44