2
我想將3radgrids上傳到單個excel,並且在同一張表單上單擊按鈕。將多個radgrids上傳到帶有格式化選項的單個excel表單
就像其中一個表格內容一樣,依此類推。
在我需要添加標題以外的內容的列標題, 任何人都可以在這方面幫助我。
Protected void buttonclick(object o,sender s)
{
RadGrid1.ExportSettings.Excel.Format = (GridExcelExportFormat)Enum.Parse(typeof(GridExcelExportFormat), alternateText);
RadGrid1.ExportSettings.IgnorePaging = CheckBox1.Checked;
RadGrid1.ExportSettings.ExportOnlyData = true;
RadGrid1.ExportSettings.OpenInNewWindow = true;
RadGrid1.MasterTableView.ExportToExcel();
}
要我直接導出一個DataTable到Excel綁定到網格 – codedGeek
當然可以過,但沒有與Telerik的方法 – Balaji
我不是在談論telerik控件,詢問.net中的其他方法 – codedGeek