将GRIDVIEW里多余的字符截取
只需要将选定的列改变为模板列,再编辑模板后,在DataBindings里,将比如Bind("concent")这样的改为 (Eval("concent")).ToString().SubString(0,5)

Eval和Bind的区别就是,一个为单向绑定,一个为双向绑定;一个在点编辑后不会出现,一个会出现

    protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
    {//改变鼠标经过行的样式
        if (e.Row.RowType == DataControlRowType.DataRow)
        {//判断当前行是数据行,
            e.Row.Attributes.Add("onmouseover","c=this.style.backgroundColor;this.style.backgroundColor='#00ffee';");
            e.Row.Attributes.Add("onmouseout","this.style.backgroundColor=c;");
        }
    }