我的GridView里有一列是考试题目的对与错。
从数据库中取出来是1或0(int)
我想修改为对或错,请问如何修改。
在什么事件中修改
麻烦简单写一下代码
多谢了
------解决方案--------------------------------------------------------
- C# code
void CustomeRowDataBound(Object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { // Display the company name in italics. e.Row.Cells[索引值].Text = (int.Parse(e.Row.Cells[索引值].Text) == 1) ? "对" : "错"; } }