嘿伙计我需要一些帮助我的GridView,我刚开始这个asp.net的东西,我不确定这是否可能。
所以这是我的问题:
我有一个带有“DateTime”对象的GridView。
DataTable Timetable = new DataTable();
Timetable.Columns.Add("From", typeof(DateTime));
Timetable.Columns.Add("To", typeof(DateTime));
DataRow dr = Timetable.NewRow();
dr[0] = Convert.ToDateTime(TextBox_TFrom.Text);
dr[1] = Convert.ToDateTime(TextBox_TTo.Text);
Timetable.Rows.Add(dr);
trainingTimes.DataSource = Timetable;
trainingTimes.DataBind();
这是我添加第一行的方式,直到这一点,它工作正常。 所以我在其他Gridviews上所做的就是在页面加载时始终获取当前数据。
public DataTable currentTimeGridView()
{
DataTable table = new DataTable();
foreach (TableCell cell in trainingTimes.HeaderRow.Cells)
{
table.Columns.Add(cell.Text);
}
foreach (GridViewRow row in trainingTimes.Rows)
{
table.Rows.Add();
for (int i = 0; i < row.Cells.Count; i++)
{
Label4.Text = trainingTimes.Columns.ToString();
table.Rows[row.RowIndex][i] = row.Cells[i];
}
}
return table;
}
但是现在我无法从GridView获取我的DateTime对象,无论如何我能得到它吗?这些东西用字符串,但现在我找不到如何得到我的对象的答案。
答案 0 :(得分:2)
而不是这个
table.Rows[row.RowIndex][i] = row.Cells[i]
使用以下代码
table.Rows[row.RowIndex][i] = row.Cells[i].Text;