将 Devexpress 导出控制与 Gridview 结合使用
我使用 Devexpress ASP.NET 组件。
我的问题是;我可以仅使用 Devexpress Gridview 来使用 Devexpress 导出代码 吗?有没有办法使用正常的 Gridview ?
例如;
我使用这个导出代码;
protected void btnPdfExport_Click(object sender, EventArgs e) {
gridExport.WritePdfToResponse();
}
使用 Devexpress Gridview;
<dx:ASPxGridView ID="grid">
</dx:ASPxGridView>
有什么方法可以使用与普通 Gridview 相同的导出代码吗?
<asp:gridview id="grid">
</asp:gridview>
I use Devexpress ASP.NET component.
My question is; Can i use Devexpress Exporting Code with only Devexpress Gridview ? Is there any way using vith normal Gridview ?
For example;
I use this exporting code;
protected void btnPdfExport_Click(object sender, EventArgs e) {
gridExport.WritePdfToResponse();
}
with Devexpress Gridview;
<dx:ASPxGridView ID="grid">
</dx:ASPxGridView>
Is there any way to use same exporting code with normal Gridview
?
<asp:gridview id="grid">
</asp:gridview>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASPxGridViewExporter 使用 XtraPrinting 库将网格内容导出为不同的格式。不幸的是,XtraPrinting 库不了解标准 GridView,因此无法导出它。
The ASPxGridViewExporter uses the XtraPrinting Library to export the grid content to different formats. Unfotunately, XtraPrinting Library does not know about the standard GridView and thus cannot export it.