protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//解决身份证号超过15位导出Excel时出现科学计数法的问题
e.Row.Cells[15].Attributes.Add("style", "vnd.ms-excel.numberformat:@");
}
}