gridview导出到excel格式及标题样式

 if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Cells[0].Attributes.Add("style", "vnd.ms-excel.numberformat:@");//文本格式
        }

        if (e.Row.RowType == DataControlRowType.Header)
        {
            e.Row.Attributes.Add("style", "background:#ffffFF;color:#000000;font-size:14px;");//表头格式,也就是显示字段名称的那一行
        }
        else
        {
            // e.Row.Attributes.Add("style", "background:#FFF");
        }

 

 

回复W787296389:    我用的是GridView
将代码放在
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
        if (e.Row.RowType == DataControlRowType.Header)
        {
            e.Row.Attributes.Add("style", "background:#ffffFF;color:#000000;font-size:14px;");//表头格式,也就是显示字段名称的那一行
        }
        else
        {
            // e.Row.Attributes.Add("style", "background:#FFF");
        }
}

你可能感兴趣的:(object,Excel)