谁能告诉我如何将 Dundas OLAP 网格导出到 Excel

发布于 2024-09-18 07:43:50 字数 65 浏览 6 评论 0原文

我是 Dundas 的新手,我想将 olap 网格导出到 Excel。我不知道该怎么做。有人可以帮我解决这个问题吗?

I am new to Dundas, I would like to export the olap grid to excell. I dont know how to do it. can someone help me on this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖乖公主 2024-09-25 07:43:50

我假设 ASP 版本:

Dim myResponse As HttpResponse = HttpContext.Current.Response
        Dim strm As System.IO.Stream = New System.IO.MemoryStream
        Dim strToExport As String

        OlapGrid.Export(strm)

        Dim streamReader As New System.IO.StreamReader(strm)
        strm.Position = 0
        strToExport = streamReader.ReadToEnd

        Try
            myResponse.Clear()
            myResponse.Buffer = False
            myResponse.AddHeader("content-disposition", "attachment;filename=Report2Excel.xls")
            myResponse.ContentEncoding = System.Text.Encoding.Default
            myResponse.ContentType = "application/vnd.xls"
            myResponse.Charset = ""
            myResponse.Write(strToExport)

        Catch ex As Exception

        Finally
            myResponse.[End]()
        End Try

BTw 如果您知道网格中 KPI 图像的解决方案,请告诉我

I assume the ASP version:

Dim myResponse As HttpResponse = HttpContext.Current.Response
        Dim strm As System.IO.Stream = New System.IO.MemoryStream
        Dim strToExport As String

        OlapGrid.Export(strm)

        Dim streamReader As New System.IO.StreamReader(strm)
        strm.Position = 0
        strToExport = streamReader.ReadToEnd

        Try
            myResponse.Clear()
            myResponse.Buffer = False
            myResponse.AddHeader("content-disposition", "attachment;filename=Report2Excel.xls")
            myResponse.ContentEncoding = System.Text.Encoding.Default
            myResponse.ContentType = "application/vnd.xls"
            myResponse.Charset = ""
            myResponse.Write(strToExport)

        Catch ex As Exception

        Finally
            myResponse.[End]()
        End Try

BTw if you know a solution for the KPI images in the grid let me know

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文