GridView 导出excel表阻止数字字符串变成数字

来源:互联网 发布:淘宝网手机电脑打不开 编辑:程序博客网 时间:2024/05/21 10:29

    protected void gvList_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            for (int i = 0; i < e.Row.Cells.Count; i++)
            {
                e.Row.Cells[i].Attributes.Add("style", "vnd.ms-excel.numberformat: @");
            }
        }
    }