设置Gridview单元格的值
stringrun=e.Row.Cells[9].Text.ToString();if(run=="S001"){if(shb<36000){e.Row.Cells[7]...
string run = e.Row.Cells[9].Text.ToString();
if (run == "S001")
{
if (shb < 36000)
{
e.Row.Cells[7].Tex = "未打卡";
}
else
{
e.Row.Cells[6].Tex = "未打卡";
}
}
我想根据另外列 的 值通过判断 在设置Cells[6]. Cells7]里的值. 可是 程序 报错
说是错误 错误 2 “System.Web.UI.WebControls.TableCell”并不包含“Tex”的定义 怎么回事 谢谢 展开
if (run == "S001")
{
if (shb < 36000)
{
e.Row.Cells[7].Tex = "未打卡";
}
else
{
e.Row.Cells[6].Tex = "未打卡";
}
}
我想根据另外列 的 值通过判断 在设置Cells[6]. Cells7]里的值. 可是 程序 报错
说是错误 错误 2 “System.Web.UI.WebControls.TableCell”并不包含“Tex”的定义 怎么回事 谢谢 展开
3个回答
展开全部
protected void Gridview1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[11].Text == "1")
{
e.Row.Cells[11].Text = "<font color='red'>已提交</font>";
}
else
{
e.Row.Cells[11].Text = "未提交";
}
if (Convert.ToDecimal(e.Row.Cells[6].Text) < decimal.Zero)
{
e.Row.CssClass = "FoucsItemStyle";
}
}
}
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[11].Text == "1")
{
e.Row.Cells[11].Text = "<font color='red'>已提交</font>";
}
else
{
e.Row.Cells[11].Text = "未提交";
}
if (Convert.ToDecimal(e.Row.Cells[6].Text) < decimal.Zero)
{
e.Row.CssClass = "FoucsItemStyle";
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询