ASP.net 三层WEB开发在GridView里面后台代码如何判断男女,代码是我这样写有问题吗。?
protectedvoidGridView1_RowDataBound(objectsender,GridViewRowEventArgse){if(e.Row.RowT...
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[3].Text = e.Row.DataItemIndex.ToString();
if (e.Row.Cells[3].Text.ToString().Equals("0"))
{
e.Row.Cells[3].Text = "男";
}
if (e.Row.Cells[3].Text.ToString().Equals("1"))
{
e.Row.Cells[3].Text = "女";
}
}
}
出现了这种问题。。数据里面的数据都为True和False 展开
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[3].Text = e.Row.DataItemIndex.ToString();
if (e.Row.Cells[3].Text.ToString().Equals("0"))
{
e.Row.Cells[3].Text = "男";
}
if (e.Row.Cells[3].Text.ToString().Equals("1"))
{
e.Row.Cells[3].Text = "女";
}
}
}
出现了这种问题。。数据里面的数据都为True和False 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询