Dexpress 8.1.3中AspxGridViewExporter导出控件问题

   使用DExpress中的AspxGridViewExporter控件,导出不同的文件类型需要用到相应的ExportOptions类型,而定义于DevExpress.XtraPrinting命名空间下的类,其实不在DevExpress.XtraPrinting程序集里面,而在DevExpress.Utils程序集里面。

1             XlsExportOptions XlsOption = new XlsExportOptions();
2             XlsOption.UseNativeFormat = true;
3             XlsOption.ShowGridLines = true;
4             XlsOption.SheetName = "Module";
5             xGVExporter.WriteXlsToResponse(true, XlsOption);

  需要使用时,不要忘记应用DevExpress.Utils程序集。

posted @ 2012-07-11 14:43  GarField_shz  Views(555)  Comments(0Edit  收藏  举报