protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string text = e.Row.Cells[1].Text;//Cell[]表示该单元格在一行中的序号,注意是从0开始计数的
if (text=="System.Byte[]")
{
e.Row.Cells[1].Text = "存在图片";
}
}
}
多谢啦哥们,已经成功显示了。
<%#Eval("字段1")==1?"存在图片":""%>
额 大哥,可能因为我是小白,所以完全没看懂你的意思。
显示的页面可以不绑定数据,直接填充“存在图片”不就好了