c#.net语句e.Row.RowType == DataControlRowType.DataRow是什么含义?事件语句protected void GridView1_RowDataBound(object sender,GridViewRowEventArgs e){if (e.Row.RowType == DataControlRowType.DataRow){e.Row.Cells[3].Text = Convert.ToDateTime(e
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/19 03:23:24
c#.net语句e.Row.RowType == DataControlRowType.DataRow是什么含义?事件语句protected void GridView1_RowDataBound(object sender,GridViewRowEventArgs e){if (e.Row.RowType == DataControlRowType.DataRow){e.Row.Cells[3].Text = Convert.ToDateTime(e
c#.net语句e.Row.RowType == DataControlRowType.DataRow是什么含义?
事件语句
protected void GridView1_RowDataBound(object sender,GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[3].Text = Convert.ToDateTime(e.Row.Cells[3].Text).ToShortDateString();
}
}
中
e.Row.RowType
DataControlRowType.DataRow又表示什么?
c#.net语句e.Row.RowType == DataControlRowType.DataRow是什么含义?事件语句protected void GridView1_RowDataBound(object sender,GridViewRowEventArgs e){if (e.Row.RowType == DataControlRowType.DataRow){e.Row.Cells[3].Text = Convert.ToDateTime(e
e.Row.RowType 是指当前行的类型
DataControlRowType 是GridView的行的类型集合 其中的DataRow是数据绑定行
这个判断语句的意思就是判断当前行是不是数据绑定行
是绑定时候用来过滤标题行和序号行等等非数据绑定行的
具体的可以在msdn上查找DataControlRowType 看