62,267
社区成员
发帖
与我相关
我的任务
分享
protected void grd_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
DataRowView data = (DataRowView)e.Row.DataItem;
if (data["REMARK"] != DBNull.Value)
{
e.Row.Cells[18].Text = Convert.ToString(data["REMARK"]).Substring(0, 15) + " …… ";;
}
}
}