Вам нужен реальный заголовок страницы или просто какой-нибудь специальный текст в начале листа?
Пользовательский текст в начале листа:
protected void RadGrid1_GridExporting(object source, GridExportingArgs e)
{
if (e.ExportType == ExportType.Excel)
{
string customText = "your text goes here";
e.ExportOutput = e.ExportOutput.Replace("<body>", "<body>" + customText);
}
}
Пользовательский текст в заголовке страницы:
protected void RadGrid1_HTMLExporting(object sender, GridHTMLExportingEventArgs e)
{
string headerText = "My header text";
string css = String.Format("table @page {{ mso-header-data:\"{0}\"; }}", headerText);
e.Styles.Append(css);
}
Удачи