首页上一页 1 下一页尾页 4 条记录 1/1页
e.Row.Cells[2].Text = Convert.ToString(Convert.ToDateTime(e.Row.Cells[2].Text).ToShortDateString());
发表在ASP.NET图书答疑
2010-05-25
是否精华
是
否
版块置顶:
是
否
你好!这是《ASP.NET项目开发全程实录》07/NE/HouAdmin/TaotiUpdate.aspx.cs第57行的源码。
e.Row.Cells[2].Text这一列的数据在数据库里本来就是日期型的,怎么还要先转成日期型的,再转成短日期型的,最后再转成字符型的? [font color=#FF0000]请问这样能起什么作用?[/font]
protected void [font color=#FF0000]GridView1[/font]_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[2].Text = Convert.ToString(Convert.ToDateTime(e.Row.Cells[2].Text).ToShortDateString());
}
if (e.Row.RowType == DataControlRowType.DataRow)
{
((LinkButton)(e.Row.Cells[4].Controls[0])).Attributes.Add("onclick", "return confirm('确定删除吗?')");
}
}
再个就是taoti_xinxi.aspx里的GridView控件的ID是gvQueInfo,怎么在其后台数据绑定时的ID还用[font color=#FF0000]GridView1[/font]?
谢谢!!!
e.Row.Cells[2].Text这一列的数据在数据库里本来就是日期型的,怎么还要先转成日期型的,再转成短日期型的,最后再转成字符型的? [font color=#FF0000]请问这样能起什么作用?[/font]
protected void [font color=#FF0000]GridView1[/font]_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[2].Text = Convert.ToString(Convert.ToDateTime(e.Row.Cells[2].Text).ToShortDateString());
}
if (e.Row.RowType == DataControlRowType.DataRow)
{
((LinkButton)(e.Row.Cells[4].Controls[0])).Attributes.Add("onclick", "return confirm('确定删除吗?')");
}
}
再个就是taoti_xinxi.aspx里的GridView控件的ID是gvQueInfo,怎么在其后台数据绑定时的ID还用[font color=#FF0000]GridView1[/font]?
谢谢!!!